#mainContainer {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;

}

#presentation {
  margin-top: 15.5rem;
  /* margin-bottom: 15.5rem; */

  h1 {
    font-family: RedHatBL;
    font-size: 5.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1rem;
    text-indent: 1rem;
    text-transform: uppercase;
  }

  p {
    font-family: RedHatL;
    font-size: 1.50rem;
    word-spacing: -0.05em;
    letter-spacing: 0.075rem;
    text-indent: 0.075rem;
  }
}

#formContainer {
  width: 75%;

  #firstLastName {
    display: flex;
    column-gap: 8rem;
    margin-top: 5.5rem;
  }

  #subjectMessage {
    display: flex;
    flex-direction: column;
  }
}

.input {
  font-size: 1.3rem;
  color: var(--blue-darker);
  width: 100%;
  height: 4rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  background-color: inherit;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: solid 0.15rem var(--red-dark);
  background-color: inherit;
  outline: none;
}

.text {
  font-size: 1.3rem;
  color: var(--blue-darker);
  width: 100%;
  /*height: 4rem; 
  min-height: 2.5rem; 
  min-width: 100%;
  max-width: 100%; 
*/
  margin-top: 3rem;
  margin-bottom: 4rem;
  background-color: inherit;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: solid 0.15rem var(--red-dark);
  background-color: inherit;
  outline: none;
  resize: none;
}

::placeholder {
  font-family: RedHatR;
  font-size: 1.5rem;
  letter-spacing: 0.075rem;
  text-indent: 0.075rem;
  color: var(--blue-darker);
}

#button {
  font-family: BeVietnamProBL;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  text-indent: 0.4rem;
  color: var(--blue-darker);
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: none;
  background-color: inherit;
  outline: none;
  margin-bottom: 15rem;
}

#button:hover {
  background-color: var(--red-dark);
  border-radius: 0.3rem;
  color: var(--blue-darker);
  cursor: pointer;
  transition: background-color 0.5s ease-in-out;
}