/*

regla de etiquetas: selector {propiedad:valor;} 
color es solamente para la tipografía
1rem = 16px = medida standard
rem es unidad variable nosotros lo podemos definir a cuanto equivale y en que dispositvo (responsive)

*/

*{ /*selector universal*/
    margin: 0; 
    padding: 0%;
}

body{ /*estilos de toda la página*/
    width: 100%; /*ancho maximo del conteindo*/
    margin: 0 auto; /*centra el contenido horizontalmente*/
    background-color: #f8f9fa;
    font-family: "Open Sans", sans-serif;
}

header{
    margin-left: 7rem;
    margin-right: 2rem; 
    padding: 0%;
    display: block; /*bloquea el tamaño del ancho y alto*/
    display: flex;
    justify-content: space-between;
}

header a{
    display: flex;
    align-items: center;
}

header a img{
    margin: auto;
}

header nav{
    border-radius: 2rem; /*radio del borde*/
    margin: 1rem;
    padding: 1rem;
    width: 50%;
    background-color: #343a40;
    border-radius: 2rem;
}

header nav ul li{ /*selector descendente*/
    text-align: center; 
    list-style: none; /*elimina el item de lista*/
    word-spacing: 1.5rem; /*espacio entre palabras*/
}

header nav ul li a{
    text-decoration: none; /*elimina el subrayado*/
    padding: 0.5rem;
    color: #f7f7f7;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block; /*permite aplicar las transformaciones*/
}

header nav ul li a:hover{
    transform: scale(1.1);
    color: #607eb0;
}

main{
    margin: 0;
    padding: 0%;
}

.titulo{
    margin: 1%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
}

.figure{
    display: flex;
    justify-content: right;
    width: 50%;
}

.figure img{
    border-radius: 50%;
}

.informacion{
    width: 50%;
    align-content: center;
    margin: 1rem;
}

h1{
    color: #607eb0;
    margin: 1rem;
    padding: 1%;
    font-size: 2rem;
    font-weight: 700 ;
    font-style: normal;
    text-align: left;
    height: 20%;
}

section p{
    color: #292929;
    margin: 1rem;
    padding: 1%;
    font-size: 1rem;
    font-weight: 600 ;
    font-style: normal;
    text-align: left;
}

.principal{
    padding: 1%;
}

.principal li{
    margin: 1rem;
    padding-left: 1rem;
    font-size: 0.8rem;
}

h2{
    color: #292929;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1%;
    margin-bottom: 1rem;
}

h3 {
    color: #292929;
    font-size: 1.2rem;
    font-weight: 700 ;
    font-style: normal;
    margin: 1rem;
    padding-left: 1rem;

}

.primero{
    display: flex; 
    justify-content: space-around;
    align-items: baseline;
    height: auto;
    padding: 1%;
    list-style: none;
    color: #292929;
}

.columna-1,
.columna-2,
.columna-3{
    width: 22rem;
    background-color: #e9ecef;
    border-radius: 1rem;
    height: 22rem;

}

.segundo{
    display: flex; 
    justify-content: space-around;
    align-items: baseline;
    height: auto;
    padding: 1%;
    list-style: none;
    width: 65%;
    color: #292929;
}

.columna-4,
.columna-5{
    width: 22rem;
    background-color: #e9ecef;
    border-radius: 1rem;
    height: 22rem;
}

aside{
    height: 16rem;
}

aside h2{
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
    padding: 1%;
    color: #292929;
    font-size: 1.5rem;
    font-weight: 700 ;
    font-style: normal;
}

.equipo{
    text-decoration: none;
    display: flex;
    justify-content: space-around;
    height: 8rem;
}

.alumno1,
.alumno3,
.alumno4{
    width: 14rem;
    height: 5rem;
    border-radius: 1rem;
    background-color: #607eb0;
    text-align: center;
    align-content: center;
}

.alumno1 a,
.alumno3 a,
.alumno4 a{
    text-decoration: none;
    color: #f7f7f7;
    font-size: 1rem;
    font-weight: 400;
}

.alumno3:hover, /*comparten los mismos atributos y se separan por ","*/
.alumno4:hover,
.alumno1:hover{
    background-color: #444444;
}

aside p{
    color: #444444;
    font-size: 0.8rem;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

footer{
    height: auto;
    width: 100%;
    justify-content: center;
    background-color: #343a40;
}

.final{
    display: flex;
    justify-content: space-around;
    padding: 2%;
}

.facultad li,
.catedra li{
    list-style: none;
    color: #f7f7f7;
    font-weight: 400;
    font-size: 0.8rem;
}

.comision li{
    list-style: none;
    color: #f7f7f7;
    font-weight: 400;
    font-size: 0.8rem;
}

footer figure{
    margin: 1rem;
    display: flex;
    justify-content: center;
}

footer figure img{
    align-content: center;
}

footer p {
    color: #f7f7f7;
    font-size: 0.8rem;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    margin-left: 6rem;
    margin-right: 6rem;
    padding: 1%;
}

.checkbtn{
    font-size: 2rem;
    color: #f7f7f7;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check {
    display: none;
}

@media (max-width: 65rem) { /*media queries para tamaños de pantalla especificos*/
    body {
        width: 100%; /* reducir el ancho máximo del contenido para pantallas más pequeñas */
    }
    /*foto,nombre y carrera*/
    .titulo{
        margin: 0%;
        padding: 1rem;
        display: block;
    }
    
    .figure{
        justify-content: center;
        margin: auto;
    }
    
    .figure img{
        border-radius: 50%;
        width: 8rem;
        height: 8rem;
    }
    
    .informacion{
        align-content: center;
        margin: auto;
        width: auto;
    }
    
    h1{
        color: #607eb0;
        margin: 0.4rem;
        padding: 1%;
        font-size: 1.5rem;
        font-weight: 700 ;
        font-style: normal;
        text-align: center;
    }
    section p{
        color: #292929;
        margin: 0.4rem;
        padding: 1%;
        font-size: 0.8rem;
        font-weight: 600 ;
        font-style: normal;
        text-align: center;
    }
    /*materias*/
    .primero,
    .segundo{
        display: block;
        justify-items: center;
        margin: auto;
    }
    .principal{
        padding: 1%;
    }
    
    .principal li{
        margin: 0.4rem;
        padding-left: 1.5rem;
        font-size: 0.8rem;
        width: 80%;
    }
    
    h2{
        color: #292929;
        text-align: center;
        font-size: 1.25rem;
        font-weight: 700;
        padding: 1%;
        margin-bottom: 1rem;
    }
    
    h3 {
        color: #292929;
        font-size: 1rem;
        font-weight: 700 ;
        font-style: normal;
        margin: 1rem;
        padding-left: 0.8rem;
        padding-top: 0.8rem;
    }
    
    .primero,
    .segundo{
        height: auto;
        padding: 1%;
        list-style: none;
        color: #292929;
        width: 100%;
    }
    
    .columna-1,
    .columna-2,
    .columna-3,
    .columna-4,
    .columna-5{
        width: 18rem;
        height: 18rem;
        background-color: #e9ecef;
        border-radius: 1rem;
        margin: auto;
    }
    /*integrantes*/
    aside{
        height: 24rem;
    }
    
    aside h2{
        text-align: center;
        margin-bottom: 2rem;
        margin-top: 2rem;
        padding: 1%;
        color: #292929;
        font-size: 1.25rem;
        font-weight: 700 ;
        font-style: normal;
    }
    
    .equipo{
        text-decoration: none;
        display: block;
        height: auto;
        justify-items: center;
    }
    
    .alumno1,
    .alumno3,
    .alumno4{
        width: 14rem;
        height: 5rem;
        border-radius: 1rem;
        background-color: #607eb0;
        text-align: center;
        align-content: center;
        margin:auto;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .alumno1 a,
    .alumno3 a,
    .alumno4 a{
        text-decoration: none;
        color: #f7f7f7;
        font-size: 1rem;
        font-weight: 400;
    }
    
    .alumno3:hover, /*comparten los mismos atributos y se separan por ","*/
    .alumno4:hover,
    .alumno1:hover{
        background-color: #444444;
    }
    
    aside p{
        color: #444444;
        font-size: 0.8rem;
        font-weight: 400;
        font-style: normal;
        text-align: center;
    }
    /*footer*/
    footer{
        height: auto;
        width: 100%;
        justify-content: center;
        background-color: #343a40;
    }
    
    .final{
        display: none;
        justify-content: space-around;
        padding: 2%;
    }

    .facultad,
    .catedra,
    .comision{
        margin: auto;
        width: 85%;
        margin-bottom: 0.5rem;
        margin-top: 0.5;
    }
    
    .facultad li,
    .catedra li,
    .comision li{
        list-style: none;
        color: #f7f7f7;
        font-weight: 400;
        font-size: 0.8rem;
        margin: 0.2rem;
    }
    
    footer figure{
        display: flex;
        justify-content: center;
        margin: auto;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    footer figure img{
        align-content: center;
    }
    
    footer p {
        color: #f7f7f7;
        font-size: 0.6rem;
        font-weight: 300;
        font-style: normal;
        text-align: center;
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 2%;
    }
}