@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700|Roboto:400,700&display=swap');

/*
selector {propiedad: valor;}
*/
* {box-sizing: border-box; 
    margin: 0; 
    padding: 0;

}

body {background: white; 
    font-family: Roboto; 
    color: #243665; 

}

h2 {color: #243665; 
    font-size: 2rem; 
    font-family: Montserrat;
    font-weight: 700;

}

.titulo {margin: 2rem 0rem 0rem 0rem; 
    text-align: center;

}

/* para sacarle el subrayado */
a {color: #243665; 
    text-decoration: none

}


footer {width: 100%; 
    background-color: #243665; 
    height: 11rem; 
    display: flex; 
    justify-content: space-around; 
    align-items: center;

}

footer h1 {font-size: 1rem; 
    font-weight: 700; 
    color: white; 
    padding-bottom: 0.5rem;

}

footer p {font-size: 0.8rem; 
    font-weight: 400; 
    color: whitesmoke; 
    text-align: center;

}

.footer-text {width: 70%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    flex-direction: column;

}


}

.contenedor {max-width: 1200px; 
    margin: auto;

}


/*Menu Principal*/
header {background-image: url(../img/banner.jpg); 
    background-size: cover;  
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    padding: 5rem 15%;

}


.tituloprincipal {font-family: Montserrat;
    font-weight: 700; 
    font-size: 3rem;

}

nav {height: 5rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 5%;
    font-family: Montserrat;
    font-weight: 700;

}

nav ul {display: flex; 
    padding: 0;

}

nav ul li {list-style-type: none;

}
nav ul li a {padding: 1rem; 
    margin: 5rem 3rem 1rem 0rem; 
    font-size: 1rem;

}

nav ul li a:hover {color: #8BD8BD;

}

.boton1 {display: flex;

}

.boton2 {display: flex;

}

.plan { width: 70%;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-wrap: wrap; 
    flex-direction: column;

}

.plan h2 {margin-bottom: 2rem;
    margin-top: 1rem;
    
}

.plan p {margin-bottom: 2rem;

}

/*Rotulo Grupal*/

.alumnos {display: flex; 
    justify-content: space-between;

}

.alumnos article {margin: 2rem 0rem 0rem 0rem; 
    text-align: center; 
    font-weight: 700;

}

.alumnos article img {border-radius: 7rem; 
    border-color: #243665; 
    border-style: solid; 
    border-width: thick;

}

.alumnos article img:hover {border-color: #8BD8BD;

}

.alumnos article p {padding-bottom: 1rem; 
    padding-top: 0.5rem;

}


.mapa{display:flex; 
    justify-content: center;

}

.mapa img {margin-top: 1rem; 
    margin-bottom: 1rem;

}


/* Celular*/  

@media all and (max-width: 30rem) {
    
    .alumnos {display: flex; flex-direction: column; justify-content: center; text-align: center;}
    ul {display:flex; flex-direction: column;}
    header { padding: 3rem ;}
}