<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px; /* Limitar el tamaÃ±o mÃ¡ximo para grandes pantallas */
    margin: 20px; /* AÃ±adir un margen para dispositivos pequeÃ±os */
}

h1, #question {
    text-align: center;
    font-size: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

input {
    padding: 10px;
    font-size: 1rem;
    width: 100%; /* Asegurarnos de que el input ocupe todo el espacio disponible */
    box-sizing: border-box;
}

button {
    padding: 10px;
    font-size: 1rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #45a049;
}

#feedback {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

/* Media query para pantallas pequeÃ±as */
@media (max-width: 600px) {
    h1, #question {
        font-size: 1.2rem; /* Reducir tamaÃ±o de fuente en pantallas pequeÃ±as */
    }

    button {
        font-size: 0.9rem;
    }

    #feedback {
        font-size: 1rem;
    }
}

/* Media query para pantallas grandes */
@media (min-width: 1200px) {
    h1, #question {
        font-size: 2rem; /* Aumentar tamaÃ±o de fuente en pantallas grandes */
    }

    button {
        font-size: 1.2rem;
    }

    #feedback {
        font-size: 1.5rem;
    }
}
</pre></body></html>