body {
  margin: 0;
  padding: 0;
  background-color: #171200;
  font-family: Arial, sans-serif;
  color: #f5c244;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 900px;
  padding: 20px;
}

.main-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  margin-bottom: 30px;
  border: none;
}

.email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.email-form input[type="email"] {
  padding: 12px;
  border: 2px solid #f5c244;
  background-color: transparent;
  color: #f5c244;
  font-size: 16px;
  width: 80%;
  max-width: 350px;
}

.email-form button {
  padding: 12px 20px;
  background-color: #f5c244;
  color: #0e0c0a;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s;
}

.email-form button:hover {
  background-color: #ffdb70;
}
