/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: url('background-image.png') no-repeat center center;
  background-size: cover; /* Ensures the image covers the entire background */
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 20px;
}

/* Main Container */
.container {
  background: rgba(255, 255, 255, 0.8); /* Light overlay to enhance readability */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  width: 100%;
}

/* Header Styles */
.logo {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  color: #ff6f61;
  margin-bottom: 10px;
}

.kidoz {
  color: #ff6f61;
}

.world {
  color: #00aaff;
}

.tagline {
  font-size: 1.3rem;
  color: #555;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.time-box {
  background: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.time-box span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #ff6f61;
}

.time-box p {
  font-size: 0.9rem;
  margin-top: 5px;
  color: #333;
}

/* Subscribe Form */
.subscribe-form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  width: 250px;
}

.subscribe-form button {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  background: #00aaff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.subscribe-form button:hover {
  background: #007acc;
}
