@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 40px;
    background-color: #4682b4;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-width: 220px;
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.button {
    display: inline-block;
    background-color: #28a745;
    /* Azul oscuro institucional */
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background-color: #218838;
    /* Un azul un poco más claro al pasar el mouse */
    transform: translateY(-2px);
}

#countdown {
    color: #ffffff;
}