/* Reset default margin and padding for the HTML and body elements */
html, body {
  margin: 0;
  padding: 0;
  height: 100%; /* Make the HTML and body elements fill the viewport */
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column; /* Display the elements in a column layout */
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  min-height: 100vh;
  background-image: url('background.jpg'); /* Add the background image URL */
  background-size: cover; /* Scale the image to cover the container */
  background-position: center; /* Center the image within the container */
}

.countdown-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9); /* Add a semi-transparent background to the container */
  border-radius: 10px;
  padding: 30px; /* Increase padding for better spacing */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add a more pronounced shadow */
}

.countdown-container h1 {
  font-size: 28px; /* Increase the font size for the message */
  font-weight: bold; /* Make the message bold */
  margin-bottom: 15px; /* Add more space between the message and the countdown */
}

.countdown-item {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.countdown-item span {
  font-size: 18px;
}

.countdown-item h1, .countdown-item h2, .countdown-item h3, .countdown-item h4, .countdown-item h5 {
  margin: 0;
}

.countdown-item h1 {
  font-size: 48px;
}

.countdown-item h2 {
  font-size: 36px;
}

.countdown-item h3 {
  font-size: 24px;
}

.countdown-item h4 {
  font-size: 18px;
}
