@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;
    text-align: center;
    font-size: 25pt;
    margin-bottom: -10px;
}

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

h4 {
    font-size: 13pt;
    margin-top: 25px; 
    color: rgb(120,22,15);
    padding: 10px;
    text-align: center;
}

h5 {
    font-size: 10pt;
    color: rgb(120,22,15);
}

/* formato de texto comitente */

#texto {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 10pt;
    text-align: center;
    color: #41413D;
}

/* formato de los titulos h3 */

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

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

#titulo h6 {
    color: #41413D;
}

/* sección equipo VM21 */

.integrantes {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #78160F;
    margin: 0;
    padding: 0;
}

.integrantes ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 2px;
    padding-bottom: 10px;
    width: 80%;
}

.integrantes li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px;
    width: 250px;
    height: 300px;
    background-color: rgb(120,22,15,0.1);
    border-radius: 15px;
}

.integrantes a {
    text-align: center;
    text-decoration: none;
    color: rgb(120,22,15);
    font-size: 12pt;
    font-weight: bold;
}

.integrantes a:hover {
    color: #41413D;
}

.integrantes img {
    width: 80%;
    border-radius: 50%;
}

/* sección datos academicos */

.datosacademicos {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    min-width: fit-content;
    justify-content: center;
    margin: 10px;
}

.datosacademicos ul {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.datosacademicos li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 17em;
    margin-top: 1em;
}

.datosacademicos h6 {
    font-size: 10pt;
    font-weight: 600;
    color: rgb(120,22,15);
}

.datosacademicos p {
    font-size: 9pt;
    font-weight: 400;
    color: #41413D;
}

.datosacademicos img {
    width: 15em;
    height: auto;
}

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