* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #09090b;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fafafa;
}

.container {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #a1a1aa;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

input[type="email"] {
  padding: 0.8rem;
  border: 1px solid #27272a;
  border-radius: 4px;
  width: 100%;
  max-width: 300px;
  background-color: #18181b;
  color: #fafafa;
}

button {
  padding: 0.8rem 1.5rem;
  background-color: #18181b;
  color: #fafafa;
  border: 1px solid #27272a;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background-color: #27272a;
}

@media (max-width: 600px) {
  .subscribe-form {
    flex-direction: column;
    align-items: center;
  }

  button {
    width: 100%;
    max-width: 300px;
  }
}
