/* style.css */
body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background-color: #282c34;
    color: #fff;
    margin: 0;
    padding-top: 20px;
}

h1 {
    color: #61dafb;
    margin-bottom: 20px;
}

#contenedor-juego {
    background-color: #373e4a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
}

#puntuacion {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #fff;
}

#mensaje {
    font-size: 1.2em;
    min-height: 30px;
    margin-bottom: 15px;
    color: #a0d468;
}

#boton-empezar {
    padding: 15px 30px;
    font-size: 1.3em;
    cursor: pointer;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

#boton-empezar:hover {
    background-color: #357abd;
}

#botones-notas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

#botones-notas button {
    padding: 12px 24px;
    font-size: 1.1em;
    margin: 5px;
    cursor: pointer;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    flex: 0 0 auto; /* Prevent buttons from growing */
}

#botones-notas button:hover {
    background-color: #c0392b;
}

#botones-notas button:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

#instrucciones {
    font-size: 1em;
    margin-top: 20px;
    color: #ddd;
    padding: 0 10px;
}

/* Media query for smaller screens */
@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    #contenedor-juego {
        width: 95%;
        padding: 15px;
    }

    #puntuacion {
        font-size: 1.2em;
    }

    #mensaje {
        font-size: 1em;
    }

    #boton-empezar {
        padding: 12px 24px;
        font-size: 1.1em;
    }

    #botones-notas button {
        padding: 10px 16px;
        font-size: 0.9em;
        margin: 3px;
    }

    #instrucciones {
        font-size: 0.9em;
    }
}