html {
  overflow-y: auto;
}

body {
  overflow-y: auto;
}

main {
  align-self: center;
  padding-top: calc(2rem + 56px);
}

#getInTouch {
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 42px;
}

h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

#formIntro {
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
}

#firstName {
  width: 223px;
  height: 37px;
}

#lastName {
  width: 223px;
  height: 37px;
}

input {
  width: 100%;
  height: 37px;
}

#message {
  width: 100%;
  height: 201.5px;
  resize: none;
}

.error-red-bg {
  background-color: #f38585;
}

#submitButton {
  border-radius: 50px;
  width: 169px;
}

.form-element {
  margin-bottom: 2rem;
}

.text-danger {
  color: #DC3545;
}

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

  #firstName {
    width: 90%;
  }

  #lastName {
    width: 90%;
  }

  input {
    width: 90%;
  }

  #message {
    width: 90%;
  }

  .form-required {
    text-align: center;
  }

  #formIntro {
    font-size: 17px;
    width: 90%;
  }
}