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

.container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 600px;
  text-align: center;
}

h1 {
  margin-bottom: 10px;
}

#quote {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #333;
}

textarea {
  width: 100%;
  height: 120px;
  font-size: 1em;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
  outline: none;
  box-sizing: border-box;
}

.buttons {
  margin-top: 15px;
}

button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #007bff;
  color: white;
}

button:hover {
  background-color: #0056b3;
}

.results {
  margin-top: 20px;
  font-size: 1em;
}
