
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff5f8;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background: #fff5f8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  width: 90%;
  max-width: 500px;
}

h1 {
  color: #e91e63;
}

.tagline {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

button {
  background-color: #e91e63;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

#message {
  margin-top: 15px;
  font-weight: bold;
  color: #4caf50;
}

#quoteDisplay {
  margin-top: 20px;
  font-style: italic;
  color: #7b1fa2;
}
