@charset"utf-8";

.{box-sizing:border-box; }

#logo {
    
    text-align: center; 
    margin: 1em;
    
}

body{
    padding: 1.2em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: sans-serif;
    margin: 0;
    text-align: center;
}

ul#menu{
    list-style: none;
    display: flex;
    flex-flow: column wrap;
    padding: 0;
}

ul#menu li{
    width:100%;
}

ul#menu li a{
    text-align: center;
    border-top: 1px solid rgb(255, 255, 255); 
    border-bottom: 1px solid rgba(0,0,0,0.3);
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 20px;
    width: 100%;   
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    transition:.5s all;
    background-color: #12de98;
}
ul#menu li a:hover{
    color:#12de98;
    background-color:#ffffff;
    font-weight: bold;
}

p{ color:black;font-family: sans-serif;}

h1{font-family: sans-serif;color: #12de98
}
main {font-family: sans-serif;
}

ul#profesores {
    color: rgb(161, 165, 165);
    list-style: none;
    padding: 0;
    margin: 0;
    
}

h2{color: #12de98}

ul#estudiantes {
    list-style: none;
    display: flex;
    flex-flow: column wrap;
    padding-left: 2em;
    padding-right: 2em;
    }

ul#estudiantes li{
        width: 100%;
}



ul#estudiantes li a{
    text-align: center;
    display: block;
    color: rgb(0, 195, 177);
    text-decoration: none;
    font-family: sans-serif;
    font-size: 16px;s
    transition:.2s all;
    padding: 0.2em;
}
ul#estudiantes li a:hover{
    color:white;
    background-color:#60E2D6;
    font-weight: bold;
}




  footer {
    font-size: 12px;
    display: flex;
    padding: 1rem;
    margin-top: 2rem;
    background-color: rgb(161, 165, 165);
    color: #641e1e;
}  
    


@media screen and (min-width: 600px) {
    
    body{
        text-align: left;
        padding: 1.1em;
    }
    
    ul#menu {
        list-style: none;
        display: flex;
        flex-flow: row;
        
    }
    ul#menu li{
        width:40%;
    }
    
    ul#menu li a{
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        border-right: 1px solid rgba(0,0,0,0.3);
        border-top: none;
        border-bottom: none;
        display: block;
        color: floralwhite;
        text-decoration: none;
        font-family: sans-serif;
        font-size: 20px;
        width: 100%;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        text-align: center;
        transition:.7s all;
        margin-top: -1em ;
        }
    ul#menu li a:hover{
        color:#12de98;
        background-color:white;
        font-weight: bold;
    }
    
    #logo {
        text-align:center;
        margin: 0;
        padding-bottom: 1em;
        background-color: white;
        
  }
    
    ul#estudiantes {
    list-style: none;
    display: flex;
    flex-flow: row;
    padding:0.5em;
    }

    ul#estudiantes li{
        width: 100%;
}
    ul#estudiantes li a{
        color: #00b3e8;
        padding: 0.5em;
        margin: 0;
        font-size: 15px;
        transition:.3s all;
        font-weight: bold;
    }
    
ul#estudiantes li a:hover{
    color:white;
    background-color:#60d8e2;
    font-weight: lighter;
    
}
    
    
    
  footer {
    font-size: 12px;
    display: flex;
    padding: 1rem;
    margin-top: 2rem;
    background-color: rgb(161, 165, 165);
    color: #641e1e;
}  
    