body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 auto;
  width: 70%;
  background-color: #f9f9f9;
}

h1 {
  text-align: center;
  color: darkblue;
  margin-top: 20px;
}

h2 {
  color: navy;
  margin-top: 20px;
}

fieldset {
  border: 2px solid darkblue;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #ffffff;
}

legend {
  font-weight: bold;
  color: darkred;
}

label {
  display: block;
  margin-top: 10px;
}

input, select, textarea {
  margin-top: 5px;
  font-size: 1em;
}

.textinput {
  width: 100%;
  height: 100px;
  border: 1px solid gray;
  padding: 8px;
  resize: vertical;
}

.comment {
  margin-top: 10px;
}

#submit, #reset {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#submit {
  background-color: darkblue;
  color: white;
}

#reset {
  background-color: darkred;
  color: white;
}

#submit:hover {
  background-color: navy;
}

#reset:hover {
  background-color: maroon;
}

footer {
  text-align: center;
  margin-top: 30px;
}

footer a {
  text-decoration: none;
  color: blue;
}

footer a:hover {
  text-decoration: underline;
}
