body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #fff;
    overflow: hidden;
}

.background {
    background-image: url('background.jpg'); /* Replace with your artistic background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for readability */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ddd;
}

.countdown {
    display: flex;
    justify-content: center;
    font-size: 1.5em;
    flex-wrap: wrap;
}

.countdown-item {
    margin: 0 10px;
}

.countdown-number {
    display: block;
    font-size: 2em;
    color: #fff;
}

.countdown-label {
    display: block;
    font-size: 0.8em;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 600px) {
    .countdown {
        font-size: 1.2em;
    }

    .countdown-number {
        font-size: 1.5em;
    }
}
