body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url('/static/images/background-image.webp') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

.container {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

h1 {
    font-weight: 600;
    font-size: 3rem;
    margin: 0;
}

p {
    font-weight: 300;
    font-size: 1.2rem;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

#countdown div {
    text-align: center;
}

#countdown span {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
}

footer {
    margin-top: 100px;
    font-size: 0.9rem;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    color: #fff;
}
