body, html {
  margin: 0;
  padding: 0;
  width: 95%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Poppins', sans-serif; /* Updated font-family */
}

.container {
  text-align: center;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2rem;
  font-weight: 400;
}

#coming-soon {
  font-size: 4rem; /* Increased font size */
  animation: blink-animation 1.5s infinite;
  font-weight: 700;
}

@keyframes blink-animation {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

input[type=email], button {
  font-size: 1.25rem; /* Adjusted font size for larger text */
  padding: 15px; /* Increased padding for a larger appearance */
  margin: 5px;
  border: none;
  border-radius: 5px;
  width: 300px; /* Increased width for the email input */
}

button {
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
}

form p {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #333; /* Or any color that fits your design */
}

.thank-you-message {
  color: green;
  font-size: 2rem;
  margin-top: 20px;
}

.error-message {
  color: red;
  font-size: 0.9rem;
  margin-top: 5px;
}