@import url('https://fonts.googleapis.com/css2?family=Nobile&display=swap');

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

body{
    margin: 0;
    background-color: #fff;
    font-family: 'Nobile', sans-serif;
}


header{
    background-color: rgb(100, 107, 184);
    margin-top: 0;
    height: 100px;
}


body header nav a{
    text-decoration: none;
    color: rgb(237, 231, 231);
 }


nav {
    padding: 1rem;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    display: inline-block; 
    padding-left: 2rem;
}

nav ul li a {
    color: black;  
    font-size: 1rem;  
    padding: 4px 16px 4px 16px; 
    background: #e6c4df; 
    border: 2px solid black; 
    box-shadow: 0px 2px 0px black; 
    border-radius: 15px; 
    height: 25; 
    width: 90px;
    text-shadow: 1px 3px 4px rgba(30,30,30,0.3);
} 

nav ul li a:hover{
    color: white;
    background-color: rgb(26, 25, 25);
}


.perfil{
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;

}

img{
    height: 210px;
    width: 200px;
    display: inline-block;
    margin-right: 24px;
    width: 200px;
    border-radius: 50%;
    border-style: solid;
    border-color: #e6c4df;
    border-width: 4px;
}

.imagen{
    margin-top: 5em;
    margin-left: 4em;
}

.camila{
    margin-top: 3em;
    line-height: 1.5;
    text-shadow: 1px 3px 4px rgba(30,30,30,0.3);
}

.camila h1{
    font-size: 2.5rem;
}


section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


article p{
    padding: 0.8rem;
}

.titulo-articulo{
    margin: 3rem;
    letter-spacing: 2px;
    text-shadow: 1px 3px 4px rgba(30,30,30,0.3);
}
.materias {
    display: flex;
    flex-direction: row;
    justify-content: center;
 
}

.nivel{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 35%;

}

.nivel h3{
    text-align: center;
    font-family: 'Nobile', sans-serif;
    text-shadow: 1px 3px 4px rgba(30,30,30,0.3);
}

.contenedor-materias{
    height: 230px;
    width: 500px;
    display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: baseline;
	align-content: stretch;
    background: #e6c4df; 
    border: 2px solid black; 
    box-shadow: 0px 2px 0px black; 
    border-radius: 15px; 
    margin: 1rem;
    text-shadow: 1px 3px 4px rgba(30,30,30,0.2)
    
}


.compañeros{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.compañeros p a{
    text-decoration: none;
    color: black;  
    font-size: 1rem;  
    padding: 4px 16px 4px 16px; 
    background: #e6c4df; 
    border: 2px solid black; 
    box-shadow: 0px 2px 0px black; 
    border-radius: 15px; 
    height: 25; 
    width: 90px;
    text-shadow: 1px 3px 4px rgba(30,30,30,0.2);
}

.compañeros p a:hover{
    color: white;
    background-color: rgb(26, 25, 25);
}

footer{
    background-color: rgb(100, 107, 184);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer p{
    text-align: center; 
    font-size: 0.9rem;
    margin: 1rem;
}

footer a{
    text-decoration: none;
    color: rgb(201, 196, 196);
}

footer a:hover{
    color: rgb(9, 9, 9);
}

.contenidos{
    height: 20px;
    background-color: rgb(36, 35, 35);
    color: rgb(147, 143, 143);
    font-size: 0.7em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}