*{  
    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;
}

.betis-info{
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}
.betis-info h1{
    text-align: center;
    color: #2D332B;
    margin-bottom: 20px;
    text-shadow: #2D332B 1px 1px 2px;
}
.betis-info h2{
    color: #2D332B;
    margin-top: 20px;
    margin-bottom: 10px;
}
.betis-info p{
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333333;
}

img{
    display: block;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer{  
    text-align: center;  
    padding: 10px;  
    background-color: #edffe7;  
    color: #2D332B;  
    margin-top: 75px;  
    font-size: 14px;
}

