/* Fondo con degradado amarillo */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(to bottom, #FFD700, #FFB900);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
}

/* Contenedor del contador */
.container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    display: flex;  
    flex-direction: column;
    align-items: center;
}

/* Título */
h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 0px;
}

/* Número del contador */
#daysRemaining {
    font-size: 80px;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 0px;
}