/* General styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #1e1e2f;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 800px;
  padding: 20px;
  box-sizing: border-box;
}

header {
  margin-bottom: 20px;
}

.main-headline {
  font-size: 2.5rem;
  color: #ff6666;
  text-shadow: 2px 2px 10px rgba(255, 102, 102, 0.8);
  margin: 0;
}

.warning-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.sub-headline {
  font-size: 1.8rem;
  margin: 10px 0;
}

.timer {
  font-size: 3rem;
  color: #f3f350;
  font-weight: bold;
  margin: 10px 0;
  text-shadow: 2px 2px 8px rgba(243, 243, 80, 0.8);
}

.date-display {
  font-size: 1.2rem;
  color: #b0bec5;
  margin-top: 15px;
}

.email-section {
  margin-top: 20px;
}

.email-headline {
  font-size: 1.8rem;
  color: #ffcccb;
}

.email-link {
  color: #00bcd4;
  font-weight: bold;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .main-headline {
    font-size: 2rem;
  }

  .sub-headline {
    font-size: 1.5rem;
  }

  .timer {
    font-size: 2.5rem;
  }

  .date-display {
    font-size: 1rem;
  }

  .email-headline {
    font-size: 1.5rem;
  }
}
