/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Space Grotesk', sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  text-align: center;
}

#background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: auto;
  padding: 20px;
  margin-top: 10vh;
}

header h1 {
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

header p {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 3rem;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
  color: #bbbbbb;
  margin-bottom: 2rem;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-form input[type="email"] {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.email-form button {
  padding: 12px;
  background-color: #ffffff;
  color: #0a0a0a;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.email-form button:hover {
  background-color: #dddddd;
}

footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: #666666;
}
