/* Contact us page styles */

#contact-us {
  font-family: "Shippori Mincho B1", serif;
  color: var(--text-color);
  padding: 15px;

  /* Responsive design */
  margin-left: auto;
  margin-right: auto;
  max-width: 70rem;
}

#contact-us h1 {
  font-size: 3em;
  padding-top: 15px;
  padding-bottom: 15px;
}

#contact-us p {
  font-size: 1.2em;
  padding-top: 10px;
  padding-bottom: 10px;
}

#contact-us-form {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#contact-us-form label {
  font-size: 2em;
}

#contact-us-form input {
  margin: 10px;
  height: 40px;
  max-width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 5px;
}

#contact-us-form textarea {
  resize: none;
  height: 250px;
}

#submit {
  margin: 10px;
  color: white;
  font-weight: bold;
  background-color: var(--orange);
  border-radius: 5px;
  padding: 10px;
  height: 40px;
  cursor: pointer;
}
