
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1e90ff; /* Azul cielo Springfield */
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.game-container {
    background-color: #ffd90f; /* Amarillo Simpsons */
    border: 4px solid #1a1a1a;
    width: 420px;
    padding: 28px;
    text-align: center;
    box-shadow: 6px 6px 0 #1a1a1a;
    border-radius: 6px;
}


h1,
#level-title {
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
    color: #1a1a1a;
}

#level-title {
    font-size: 26px;
    margin-bottom: 12px;
}


#question {
    font-size: 16px;
    margin-bottom: 18px;
    color: #1a1a1a;
    line-height: 1.4;
}


input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    margin-bottom: 12px;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    outline: none;
}


button {
    background-color: #e53935; /* Rojo alerta */
    color: #ffffff;
    border: 2px solid #1a1a1a;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

button:hover {
    transform: translateY(1px);
    box-shadow: 2px 2px 0 #1a1a1a inset;
}


#timer {
    font-weight: bold;
    margin-bottom: 14px;
    color: #1a1a1a;
}


#message {
    margin-top: 12px;
    font-weight: bold;
    min-height: 24px;
}
