@import url('https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:100,200,300,400,500,600,700,800,900');

html {
    font-size: 100%; /*100% = 16px */
    background-color:#ffd484;
    color:darkslategrey;
    font-family: "Encode Sans Condensed", sans-serif;
}

body {
    min-height: 100vg;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a p {
    font-weight: 600;
    background-color: cadetblue;
    color: ghostwhite;
    padding: .5em;
    transition: 1s;
}

a p:hover {
    background-color: orange;
}

/* Menú */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    font-size: 1em;
    float: none;
    width: 60%;
    transition: width 2s;
}

li a {
    text-align: center;
    display: block;
    color:ghostwhite;
    background-color: orange;
    padding: 0.7em;
    padding-left: 1em;
}

/* Cambia al acercar el puntero */
li:hover {
    width: 100%;
}

/*Todo lo que quiera animar tiene que estár antes de -transition-*/
li a:hover {
    background-color:aquamarine;
    color:cadetblue;
    transition: 2s;
}
/*Fin Menú*/

section {
    font-size: 0.80em;
    margin-right: 2em;
    margin-left: 2em;
    margin-top: 2em;
    margin-bottom: 3em;
}

#tp {
    margin-top: 2.5em;
}

#estudiantes div {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

footer {
    font-size: 0.6em;
    padding: 2em; 2em;
    box-sizing: border-box;
    color: aquamarine;
    background-color: cadetblue;
}