@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');

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

body{
    background: #f7f2e7;
    text-align:center; 
    font-family: 'Raleway', sans-serif;
}

.contenedor{
	max-width: 75rem;
	margin: auto;
}

header{
    background-image: url("../img/header.jpg");
    background-size: cover;
    height: 16rem;
    background-position: center;
    background-repeat: no-repeat, repeat;
    margin-bottom: 13%;
    background-attachment: fixed;
}


nav a{
    color: #ffffff;
    font-weight: 600;
}

nav a:hover{
    color: #f7f2e7;
}


h1{
    letter-spacing:0.3rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 2%;
    color: #ffffff;
}

h2{
    color: #797a7e;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid #d8d3cd ;
    width: 25%;
    margin: 1.5%;
    padding:0.3%;
    border-radius: 10px;
}

h3{
    font-size: 1.3rem;
    color: #797a7e;
    font-weight: 700;
    margin-bottom: 5%;
    color: #a9bfb0;
}

a{
    text-decoration:none;
    color:#2a5b75;
    font-weight: 300;
    margin:5%;
} 

p{
    color: #797a7e;
}


footer{
    margin: 3%;
}

footer p{
   font-size: 0.7rem;
   padding: 1% 15% 1% 15%;
   text-align: center; 
}

.menu ul{
    color:#FFFFFF;
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem 5rem 2rem 5rem;
}

.menu li{
    list-style:none;
}

center img{
    margin: auto;
    display: block;
    border: 0.2rem solid #fff;
    border-radius: 5rem;
    padding: 0;
    width: 150px;
}

.datos{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: stretch;
    align-content: stretch;
}

.materias{
    background-color: #FFFFFF;
    padding: 5%;
    border-radius: 10px;
    border-bottom: 5px solid #a9bfb0;
    width: 45%
}

.datos_academicos{
    background-color: #FFFFFF;
    padding: 5%;
    border-radius: 10px;
    border-bottom: 5px solid #a9bfb0;
    width: 45%;
}

.titulo-equipo {
    padding-top: 3rem;
}

.equipo{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-between;
    align-items: center;
    align-content: stretch;
    padding: 3rem 0 5rem 0; 
}

buttom {
    background: #a9bfb0;
    padding: 1rem 3rem 1rem 3rem;
    color: #fff;
    border-radius: 50px;
}

buttom:hover{
    background: #797a7e;
}

.alumno{
    width: 20%;
}

.alumno h4{
    margin: 1rem 0 1rem 0;
    color: #797a7e;
}


.alumno h3{
    background: #636363;
    border-radius: 10px;
    padding: 0.2rem;
}

@media screen and (max-width: 992px) {
    .datos{
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    }
    .materias{
        margin-bottom: 5%;
    }

}