body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    
    text-align: center;
    background-color: aquamarine;
}



h2{
    font-size: 25px;
}

#game-container {
    flex: 1; /* Ocupa todo el espacio disponible */
    display: flex;
    justify-content: center;
    align-items: center;
}


#controls button { 
    width: 60px;
    height: 60px;
    font-size: 20px;
    margin: 5px;
    cursor: pointer;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

#controls button:hover {
    background-color: #555;
}

#difficulty-selector {
    text-align: center;
    margin: 10px 0;
}

#difficulty-selector select {
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
}

footer{
    position: relative;
    bottom: 0%;
}

/* Responsividad para pantallas más pequeñas */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    #controls button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

/* Responsividad para pantallas muy pequeñas (smartphones) */
@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 16px;
    }

    #controls button {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

