body {
    font-family: Arial, sans-serif;
    background-color: #add8e6; /* Azul claro */
    text-align: center;
    margin: 0;
    padding: 0;

 
    height: 100vh; /* Asegura que el cuerpo cubra toda la ventana */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: #fff;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 330px;
}

h1 {
    font-size: 1.5em;
}

label, input, button, p {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.1em; /* Aumentar tamaño de las letras */
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  
}

.magnitude {
    background-color: #87ceeb; /* Azul un poco más oscuro que el fondo del programa */
    text-align: center; /* Centrar el texto */
    color: red; /* Color del texto rojo */
    font-weight: bold; /* Texto en negrilla */
}

.numInc {
    background-color: #90ee90; /* Verde claro */
    text-align: center; /* Centrar el texto */
}

.button-container {
    display: flex;
    justify-content: space-around;
}

button {
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 45%;
    font-size: 1.1em;
}

button:hover {
    background-color: #218838;
}

#feedback {
    color: red;
    font-size: 1.1em;
}

#score, #correctCount, #incorrectCount, #percentage {
    font-weight: bold;
    font-size: 1.1em;
}

button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}
