body {
  font-family: komet;
  max-width: 700px;
  margin: 30px auto;
  background-image: url("../media/stone.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
}
header {
  margin: 30px;
  img {
    width: 50%;
    margin: 30px;
  }
}

header h1 {
  margin-bottom: 20px;
}

header h2 {
  margin-top: 20px;
}

.form-card {
  width: 900px;
  max-width: 90%;

  background: white;

  padding: 40px;
  border-radius: 20px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: bold;
  color: black;
}

.underlabel {
  font-weight: lighter;
}

input,
textarea {
  padding: 8px;
  font-size: 16px;
}

input[type="submit"] {
  cursor: pointer;
}

.submit {
  background-color: rgb(175, 198, 134);
  border-radius: 2mm;
  border-color: rgb(175, 198, 134);
}

header {
  height: 250px;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;
  line-height: 0;
  margin: 10%;
}

header h1 {
  color: black;
  font-size: 40px;
  font-family: manifold-extd-cf;
}

header h2 {
  color: rgb(90, 117, 76);
  font-size: 40px;
  font-family: manifold-extd-cf;
}

.error-box {
  text-align: center;
  background-color: lightgray;
  border-radius: 4mm;
  margin: 10%;
}

footer {
  font-size: 10pt;
  font-family: komet;
  color: black;
  font-weight: lighter;
  text-align: center;
  margin-top: 6%;
}

textarea {
  font-family: inherit;
  font-size: inherit;
}

.submit {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .submit {
    max-width: 20px;
  }
}
