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

body{background-color:rgb(242, 255, 230);
    font-family:Helvetica;
    display: flex;
    justify-content: center;
    flex-direction: column;
    
}

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

header{
    padding: .5em;
    background-color: rgb(51, 102, 0,.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h2 a{
    text-decoration: none;
    color: white;
    font-size: .8em;
    
}
.menu {
    display: flex;
    justify-content: flex-end;
    list-style:none; 
}

.menu li{
    background-color:rgb(51, 102, 0);
    margin: .5em;
    padding: .7em;
    border-radius: 1em;
    box-shadow: 0 .35em .5em rgba(0, 0, 0, .35);
}

.menu li:hover{
    background-color:rgb(0, 51, 0); 
}


.menu li a{
    text-decoration: none;
    color:white;
    font-size: .9em;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-grow: 1;
    flex-wrap: wrap;
    margin:auto;
    max-width: 20em;
}
.escudo{

    display: flex;
    flex-direction: column;
    text-align: center;
    height: auto;
    width: auto;

    
}
h1{
    padding: .3em;
    margin: .5em;
    background-color: rgb(51, 102, 0);
    color:white;
    border-radius: 5em;
    font-size: 1.3em;
    padding: .5em;
    box-shadow: 0 .35em .5em rgba(0, 0, 0, .35);
    text-align: center;
}

.imgescudo{
    height: auto;
    width: auto;
    margin: auto;
    padding: .5em;
}

.info{
    text-align: center;
    font-size: .9em;
    color: rgb(51, 102, 0);
    margin:auto;
    padding: .5em;
    
}
h2{
    text-align: center;
    font-size: 1em;
    color:white;
    background-color: rgb(0, 51, 0);
    margin: 1em 2em 1em 2em;
    padding: .5em;
    border-radius: 5em;
    font-style: italic;
    box-shadow: 0 .35em .5em rgba(0, 0, 0, .35);    
    margin-top: 1em;
}

.profesores li {
    list-style: none;
    text-align: center;
    font-size: .9em;
    color:rgb(51,102,0);
}

.alumnos{
    list-style: none;
    display: flex;
    flex-direction: column;

}

.alumnos li{
    font-size: .9em;
    background-color:rgb(51,102,0);
    width: 6em;
    height: 6em;
    border-radius:5em;
    padding: 1em;
    margin:auto;
    margin-top:.7em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.alumnos li a{
    color: white;
    text-decoration: none;
}

.alumnos li:hover{
    background-color: rgb(0,51,0)
}

.usuario{
    list-style: none;
    text-align: center;
    font-size: .85em;
    color: rgb(51,102,0)
    
}
.contenido li{
    list-style: none;
    text-align: center;
    margin-top: .9em;
    font-style: oblique;
    color: rgb(0,51,0);
    font-size: .9em;
    text-decoration-line: underline;
    
    
}

footer{
    background-color:rgb(0, 51, 0);
    font-size: 0.7em;
    color:white;
    text-align: center;
    padding: 1em;
    margin-top: .5em;
    font-style: italic;
 }

footer p{padding: .5em;}

@media ( min-width: 35em ){
  
    main{
        max-width: 80%;
    }
    
    .imgescudo{
        max-width: 10em;
        max-height: 10em;
        height: 10em;
        width: 10em;
        margin: 1em; 
    }

    .rotonda{
        display: flex;
        justify-content: center;
        align-items: center; 
    }
    
    .alumnos{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    margin:auto;
    max-width: 80vh;
}
    .alumnos li{
     margin: 1em;
    }
    
    .datos{
        display: flex;
        justify-content: space-around;

    }
    .plan{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .objetivo{
        display: flex;
        flex-direction: column;
        
    }