

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.container {
  max-width: 600px;
  width: 100%;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  color: #B0B0B0;
  margin-bottom: 2rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type="email"] {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #1E1E1E;
  color: #ffffff;
}

input[type="email"]::placeholder {
  color: #888;
}

button {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background: #4A90E2;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #357ABD;
}

@media (min-width: 600px) {
  .subscribe-form {
    flex-direction: row;
    justify-content: center;
  }

  input[type="email"] {
    flex: 1;
  }

  button {
    width: auto;
  }
}
