/* FONTS */
@font-face{
  font-family: "glacial-regular";
  src: url("fonts/GlacialIndifference-Regular.otf");
}
@font-face{
  font-family: "glacial-italic";
  src: url("fonts/GlacialIndifference-Italic.otf");
}
@font-face{
  font-family: "glacial-bold";
  src: url("fonts/GlacialIndifference-Bold.otf");
}

h2 {
  display: inline-block;
  text-align: center;
}

/* Form */
form {
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form .form-entry {
  width: 50%
}

.form-main {
  background: #aad1d0;
}

.subheading {
  padding: 15px;
  margin: 0;
}

.hidden {
  display: none;
}

/* Feedback */
.feedback {
  margin: 0;
  color: darkred;
  text-decoration: underline;
  font-size: 90%;
  text-indent: 11%;
}

label, input, button, textarea {
  display: inline-block;
  font-family: "glacial-regular", sans-serif;
}

label {
  width: 25%;
  text-align: right;
}

input, textarea#message {
  width: 50%;
}

textarea#message {
  margin-top: 10px;

  height: 100px;
  resize: vertical;
}

input, textarea, button {
  font-size: 15px;
}

#message-label {
  position: relative;
}

.form-button {
  text-align: right;
  margin-bottom: 20px;
  width: 25%;
}



@media screen and (max-width: 1050px) {

  input, textarea {
    display: block;
  }


  form .form-entry {
    text-align: left;
    width: 66.666%;
    margin-left: 33.333%;
  }

  label {
    margin: 10px 0;
    text-align: left;
  }

  .feedback {
    text-indent: 0;
    text-align: left;
    padding-left: 0;
    margin-right: 33.333%
  }
}

@media screen and (max-width: 400px) {

  .feedback {
    font-size: 80%;
  }
}
