body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #FFFC00;
}

.text {
  display: flex;
  justify-content: center;
  font-size: 2rem;
}
/* Form container */
form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

/* Form input fields */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Form submit button */
form button[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Form field labels */
form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Responsive layout */
@media (max-width: 600px) {
  form {
    max-width: 100%;
  }
}
