@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;
}

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

/* formato de los titulos h3 */

#titulo {
    color: rgb(120,22,15);
    font-size: 16pt;
    margin-bottom: 20px;
    margin-top: 20px;
    margin: 10px;
}

#titulo h3 {
    border-style: solid;
    border-width: 3px;
    border-color: rgb(120,22,15);
    border-left-style: none;
    border-right-style: none;
    border-top-style: none;
    margin-bottom: 10px;
    margin-top: 20px;
}

.secciones p {
    margin: 10px;
    color: #41413D;
    font-size: 11pt;
}

.contenedorimagen {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contenedorimagen img {
    width: 60%;
    margin-bottom: 20px;
}

.contenedorimagen h5 {
    color: rgb(120,22,15);
    font-size: 12pt;
    margin-bottom: 20px;
    margin-top: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(120,22,15);
    border-left-style: none;
    border-right-style: none;
    border-top-style: none;
    margin-bottom: 10px;
    margin-top: 20px;
}

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