h1 {
  margin: 10px;
  padding-left: 10px;
  font-size: 36px;
  text-align: justify;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  color: #DE8100;
}

p {
  margin: 10px;
  font-size: 30px;
  text-align: center;
  padding-inline: 10px;
  color: #DE8100;
}

form {
    margin: 10px;
    text-align: center;
}

input[type="text"],
input[type="email"],
textarea {
    width: 50%;
    padding: 12px;
    border: 1px solid #213040;
    border-radius: 8px;
    font-size: 1rem;
    color: #374151;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Lemon Regular";
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    background-color: #DE8100;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: block;
    width: 50%;
    margin: 10px auto;
    font-family: "Lemon Regular";
}

button:hover {
    background-color: #b96c00;
}