body {
  background: #f5f5dc;
  font-family: 'Fredoka', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: #fff;
  padding: 2rem;
  border: 2px dashed purple;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
}

.hero-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

h1 {
  color: teal;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

input[type="email"] {
  padding: 0.8rem;
  width: 80%;
  max-width: 300px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 1rem;
}

button {
  padding: 0.8rem 1.5rem;
  background: purple;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  input[type="email"],
  button {
    width: 100%;
  }
}
