/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #eef2f3, #8e9eab);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 90%;
}

/* Logo */
.logo {
    width: 120px;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Titre principal */
.welcome-message h1 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 20px;
}

/* Texte secondaire */
.welcome-message p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #555;
}

/* Countdown */
.countdown h2 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 20px;
}

#timer {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #0056b3;
    font-weight: bold;
}

/* Pied de page */
footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-message h1 {
        font-size: 2rem;
    }

    .welcome-message p {
        font-size: 1rem;
    }

    #timer {
        font-size: 1rem;
    }
}
