body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Full-screen background image */
.bg-image {
	background-image: url(images/background.jpg);
	background-size: cover;
	background-position: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1; /* Ensure the background stays behind the overlay */
}

/* Countdown Timer Overlay */
.countdown-overlay {
    background-color: rgba(0, 0, 0, .5); /* Semi-transparent black overlay */
    color: white;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-container {
    max-width: 600px;
    padding: 20px;
}

.countdown-container h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#countdown {
    font-size: 3em;
    font-weight: bold;
}


