Body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    background-color: #008080; 
    color: #000000; 
}

Header { 
    background-color: #ff0000; 
    color: #ffffff; 
    padding: 20px; 
    text-align: center; 
}

Header h1 { 
    margin: 0; 
    font-size: 3rem; 
    font-weight: bold; 
}

Nav .menu { 
    display: flex; 
    justify-content: center; 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    background-color: #002ª6b; 
}

Nav .menu li { 
    margin: 0 20px; 
}

li {
display: inline;
background-color: rgb(204, 235, 95);
padding-top: 7px;
padding-bottom: 7px;
margin-left: 30px;
}
Nav .menu li a { 
    text-decoration: none; 
    color: #ffffff; 
    font-size: 1.2rem; 
    font-weight: bold; 
    padding: 10px 15px; 
    transition: background-color 0.3s, color 0.3s; 
}

Nav .menu li a:hover { 
    background-color: #001940; 
    color: #d4d4d4; 
    border-radius: 5px; 
}

Main { 
    padding: 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

Main h2 { 
    color: #004aad; 
    text-align: center; 
    margin-bottom: 20px; 
    font-size: 2rem; 
}

Main p { 
    line-height: 1.8; 
    font-size: 1.1rem; 
    text-align: justify; 
    margin-bottom: 20px; 
}

Main ul { 
    list-style: disc; 
    margin: 20px; 
    padding: 0 40px; 
}

Main ul li { 
    margin-bottom: 10px; 
    font-size: 1rem; 
}

.deportes-lista { 
    display: flex; 
    justify-content: space-around; 
    flex-wrap: wrap; 
    gap: 20px; 
    margin-top: 20px; }

.deporte { 
    background-color: #ffffff; 
    border: 1px solid #ccc; 
    border-radius: 10px; 
    padding: 15px; 
    text-align: center; 
    width: calc(30% - 20px); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s, box-shadow 0.3s; 
}

.deporte:hover { 
    transform: scale(1.05); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.deporte img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 5px; 
    margin-bottom: 10px; 
}

Footer { 
    background-color: #002ª6b; 
    color: #ffffff; 
    text-align: center; 
    padding: 15px 0; 
    margin-top: 20px; 
    position: relative; 
    bottom: 0; 
    width: 100%; 
}
