@charset="utf-8";

/*fuente importada de google fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: -webkit-fill-available;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background-color: #E6E6E0;
    font-family: "poppins", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

img {
    max-width: 100%;
}

header {
    width: 100%;
}

header .barra{
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: auto;
}

.barra img {
    padding: 10px;
    margin: 10px;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

header {
    background-color: #78160F;
    padding: 1px;
}

header .barra2{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

header .barra2 a:hover{
    color: #CAC9C3;
}

nav {
    display: block;
}

header nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* BOTONES DE HEADER */

header nav ul li a {
    display: inline-flex;
    color: white;
    font-weight: bold;
    padding: 5px 40px;
    text-align: center;
}

header nav ul li {
    min-width: 90px;
    margin: 1px 1px 1px;
}



h1 {
    color:#78160F;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 22pt;
    margin-bottom: -10px;
}

.enfoque h2 {
    color: #41413D;
    text-align: center;
    font-size: 15pt;
}

.enfoque p {
    color: #41413D;
    font-size: 11pt;
    margin: 15px;
    text-align: center;
}

#mapa {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mapa img {
    width: 70%;
    height: auto;
    margin-bottom: 20px;
}

footer {
    padding: 9px;
    color: white;
    background-color: #78160F;
    font-size: 8pt;
    margin-top: 30px;
}
