body {
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  background-color: #f4f4f4;
}

h1 {
  color: #333;
}

form {
  background: white;
  padding: 20px;
  margin-top: 4%;
  margin-left: 25%;
  margin-bottom: 5%;
  width: 50%;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
label {
  margin: 0px;
}
input {
  width: 70%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
textarea {
  width: 68%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #28a745;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #218838;
}
