/* Base Reset and Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f3d8; /* Light background */
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #111111; /* Dark text for readability */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #111111;
}

/* Logo Container */
.logo-container {
  margin-bottom: 20px;
  text-align: center; /* Ensure the container centers its content */
}

/* Logo Image */
.logo {
  max-width: 150px;  /* Reduced from 250px to control size */
  height: auto;
  margin-bottom: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Timer Styles */
#timer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.time-segment {
  background: #111111;
  color: #f4f3d8;
  padding: 20px;
  border-radius: 8px;
  width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.time-segment span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

/* Coming Text */
.coming-text {
  font-size: 1.25rem;
  color: #111111;
  margin-top: 20px;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  .time-segment {
    width: 60px;
    padding: 15px;
  }
  .time-segment span {
    font-size: 1.5rem;
  }
}