*{  
    margin: 0;  
    padding: 0;  
    box-sizing: border-box;
}

nav{  
    text-align: center;  
    height: max-content;  
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #edffe7;
}

nav a{
    color: #2D332B;
    text-decoration: none;
    margin: 10px 20px;
    font-weight: bold;
    display: flex;
    height: 10vh;
    text-align: center;
    font-size: 25px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    padding: 20px;

}

nav a:hover{
    background-color: #A3C9A8;
    color: white;
    transition: 0.5s;
}

.horario {
    font-size: 100px;
    margin: 20px auto;
    border-collapse: collapse; 
    display: flex;
}

.container-horario{
    width: 100%;
    border: 2px solid #2D332B;  
}

.container-horario h2{
    text-align: center;
    background-color: #A3C9A8;
    color: white;
    padding: 10px;
}

footer{  
    text-align: center;  
    padding: 10px;  
    background-color: #edffe7;  
    color: #2D332B;  
    margin-top: px;  
    font-size: 14px;  
}