body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #003366; /* Azul oscuro */
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

h1 {
    color: #ffcc00; /* Amarillo */
}

.game-container {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
}

button {
    background-color: #ffcc00;
    color: #003366;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
}

button:hover {
    background-color: #ffdd55;
}

button:disabled {
    background-color: gray;
    cursor: not-allowed;
}

/* Estilo reducido para el texto de "Desarrollado por..." */
.footer {
    font-size: 12px;
    font-weight: bold;
    color: #ffcc00;
    margin-top: 10px;
}

/* Efecto máquina de escribir para "Feliz Cumpleaños Elsi" */
.cumple {
    font-size: 20px;
    font-weight: bold;
    color: #ffcc00;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid white;
    width: 0;
    animation: escribir 3s steps(30, end) forwards;
}

/* Animación de escritura */
@keyframes escribir {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
