* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
  height: 100%;
}

.hero {
  background: url('https://chatgpt.com/s/m_6890b47a86448191ba740e2e733cfcba') center center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  color: #fff;
  text-align: center;
  max-width: 600px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

input[type="email"] {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  width: 60%;
  max-width: 300px;
  font-size: 1rem;
}

button {
  padding: 0.8rem 1.2rem;
  border: none;
  background-color: #ff4747;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e63b3b;
}

.subtext {
  font-size: 0.9rem;
  color: #ccc;
}

footer {
  background-color: #000;
  color: #999;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}
