body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: url('apex.jpg') center/cover fixed;
  backdrop-filter: blur(10px);
}

.countdown {
  text-align: center;
  max-width: 90%; /* Adjust max-width for smaller screens */
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
}

#timer {
  font-size: 3rem;
  margin-top: 20px;
  word-wrap: break-word;
}

/* Adjust font size and layout for smaller screens */
@media (max-width: 768px) {
  #timer {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .countdown {
    max-width: 100%; /* Full width for very small screens */
    padding: 10px;
  }
  #timer {
    font-size: 1.5rem; /* Smaller font size for very small screens */
  }
}