@charset "utf-8";

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

body{
    background-color: floralwhite; 
    font-family:helvetica;
    font-size: .95em;
    color:brown;
    min-height: 100vh;
    display: flex; 
    flex-direction: column;
    justify-content: space-between;
}

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

header{
    height: 4em;
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: .30em;
    background-color:salmon
}

.dgpc{
    margin-left: .5em;
}

.menup { 
    list-style:none; 

    display: flex;
    justify-content: flex-end;
}

.menup li {
    background-color: cadetblue;
    margin:.25em;
    padding: .70em;
    border-radius: 15%;
    margin-left: .25em;
}

li:hover{
    background-color: brown;
}

.menup li a {
    text-decoration: none;
    color:white;
    font-style: oblique;

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

h1{
    font-size: 1.2em;
    margin: auto;
    padding: .7em;
    margin-top: 1em;
    margin-bottom: 1em;
    background-color: salmon;
    border-radius: 1em;
    box-sizing: border-box;
}
.andrea{
    margin: auto;
    text-align: center;
    max-width: 20em;
}

.fotoandrea{
    border-radius: 50%;
    max-width: 80%;
    max-height: 80%;
    height: auto;
    width: auto;
    margin: auto;
    box-shadow: 0 .35em .5em rgba(0, 0, 0, .35) inset, 0 .35em .5em rgba(0, 0, 0, .35)
}

h2{
    font-size: 1em;
    text-decoration-line: underline;
    padding: .5em;
    margin-top: 1em;
    text-align: center;

}
h3{
    background-color: cadetblue;
    color:white;
    box-sizing: border-box;
    border-radius: .95em;
    margin:.35em;
    padding: .20em;
    background-size: 50px;
    text-align: center;
}

.materia{
    text-align: center;
    font-size: .9em;
}

.bocetoandrea{
    margin:auto;
    max-width: 20em;
}

.alumnos{
    list-style: none;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.alumnos li{
    font-size: .9em;
    background-color:salmon;
    width: 6em;
    border-radius:20%;
    padding: 1em;
    margin: 1em;
    text-align: center;
    display: flex;
    align-items: center;

}

.alumnos li a{
    text-decoration: none;
    color:brown;
}

.alumnos li:hover{
    background-color: cadetblue;
    
}

.info{
    text-align: center;
    font-size: .7em;
    margin-bottom: 1em;
}

footer{
    background-color: salmon;
    font-size: 0.7em;
    color:brown;
    text-align: center;
    padding: 1em;
    font-style: italic;
}

@media ( min-width: 35em ){
  
    main{
        max-width: 100%;
    }
    .andrea{
        width: 90%;
        max-width: 35em;
        display: flex;
        justify-content: center;
        align-items: center;
        
    }
    
    .fotoandrea{
        max-width: 15em;
        max-height: 15em;
        height: 15em;
        width: 15em;
        margin: 1em; 
     }

}
