@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,700,900');

*{
    box-sizing: border-box;
    margin: 1%;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    }


html{
    font-size: 16px;
    background-color: #ffffff;
}


#pagina{
    margin: auto;
    width: 80%;
}

#botonera{
    list-style: none;
    display: flex;
    flex-direction: column;
}

#botonera li{
    color: crimson;
    display: block;
    text-align: center;
    width: 100%;
    height: 2rem;
    background-color: rgba(247, 228, 230);
    }

#botonera li a{
    text-decoration: none;
    line-height: 2rem;
    color: black;
    font-family: sans-serif;
    font-weight: bold;
    }

#botonera li a:hover{
    color: #b51a80;
    }

main{
    margin-top: 4rem;
}

#estudiantes a{
    list-style: none;
    text-decoration: none;
    color: black;   
}

footer{
    margin: auto;
    width: 80%;
    font-size: 0.80em;
    text-align: center;
    color: crimson;
}

p{
    color: #47414b;
    margin-bottom: 3rem;
    margin-top: 3rem;
}


@media screen and (min-width: 1150px){
    
    #botonera{
    flex-direction: row;
    }

}


  
