@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Kanit:ital@1&family=Raleway&display=swap');
*{
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: lightgoldenrodyellow;
}

h1,
h2,
h3,
p{
    margin-bottom: 1em;
}

.nombre{
    font-size: 2.5em;
    font-weight: bold;
    color:azure;
    font-family: 'Kanit', sans-serif;
}

a{
    text-decoration: none;
}

ul,
ol{
    list-style: none;
    padding: 0;
}

img{
    max-width: 100%;
    height: auto;
    align-content: center;
}

.contenedora{
    max-width: 50rem;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}

header,
footer{
    background-color: #293441;
    color: #B4B0BF;
}

footer{
    padding: 5em;
    margin: 1em 0 0 0;
    font-family: sans-serif;
}

header .contenedora{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: justify;
}

#logo{
    border-radius: .35em;
    padding: .35em;
    width: 8em;
}

header nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

header nav ul li{
    min-width: 4em;
    margin: .25em 0 .25em .25em;    
}

header nav ul li a{
    border-radius: .25em ;
    color: #B4B0BF;
    font-weight: bold;
    padding: .25em .5em;
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}


header nav ul li a:hover{
    color: black;
    background-color: lightgoldenrodyellow;
}

section {
    padding-bottom: 1em;
}

.titulo{
    border-bottom: .1em solid #B4B0BF;
    color: #B4B0BF;
    width: 100%;
    text-align: center;
}

.equipo{
    flex-direction: column;
    justify-content: center;
    background-color: #293441;
    border-radius: 1em;
    text-align: center;
    margin-top: 2em;
}

.equipo p{
    color:white;
}
.equipo h2 {
    margin-top: .6em;
    margin-bottom: .5em;
    color: #B4B0BF;
}

.equipo h3 {
    color: #8f8c99;
}

.equipo ol {
    display: flex;
    justify-content: center;
}


.equipo ol li a img{
    margin-right: 1em;
    margin-left: 1em;
    padding: 0.5em;
    border-radius: 1em;
    background-color: #ffffff94;
}

.equipo ol li a img:hover{
    border-radius: 1em;
    background-color: #ffffff;
}

.equipo li {
    margin: .5em 0;
    border-radius: .25em;
}

.equipo ul{
    display: flex;
    justify-content: center;
}

.equipo ul li {
    margin: 1em;
}

.equipo ul li img{
    width: 5em;
    margin: 1em;
}

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

.masInfo{
    width: 5em;
    height: auto;
    border-radius: 1em;
}

.boton {
    color: white;
    padding: .5em;
}

.boton:hover{
    color: black;
    background-color: rgba(250, 250, 210, 0.836);
    padding: .5em;
    border-radius: .5em;
}

.avatar {
    width: 30em;
    border-radius: 2em;
}

#bocetos img{
    width: 100%;
}

/*
#integrante {
    display: flex;
    background-color: #B4B0BF;
    border-radius: .25rem;
    color: #293441;
    font-weight: bold;
    line-height: 1.7em;
    padding: .125em .5em;
    margin: 0 0 .3em;
}

#integrante:hover {
    background-color: lightgoldenrodyellow;
    color: #B4B0BF;
}*/
    
.materias{
    flex-direction: column;
    justify-content: center;
    background-color: #AECFE9;
    border-radius: 1em;
    text-align: center;
    margin-top: 2em;
}

.materias h2{
    color: black;
}

#materias{
    text-align: center;
    justify-content: center;
}

.datosAcadem{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.datosAcadem ul{
    margin: 1em;
    text-align: center;
}

.datosAcadem img{
    width: auto;
    height: 4em;
    margin: 1em;
}

/* Computadora, GRANDE */

@media screen and (min-width: 1024px) {
    .equipo h1{
    font-size: 3em;
    }

    h2{
        font-size: 2em;
    }

    .datosAcadem{
        flex-direction: row;
    }
    .avatar img{
        width: 10em;
    }
}
