:root {
  --white: #fff5f1;
  --red: #d90429;
  --black: #000000;

  --large: 3rem;
  --big: 2.6rem;
  --medium: 1.7rem;
  --small: 1.4rem;

  --bigWidth: 20rem;
  --bigHeight: 30rem;
}

#contactLink {
  font-weight: 500;
}

input,
textarea {
  padding: 1rem;
  margin: 1rem auto 1rem auto;

  background: none;
  border: 0.3rem solid var(--black);
  border-radius: 0.75rem;

  font-size: var(--medium);

  width: 40%;
}
form button {
  width: 15%;
  margin: 0 auto 0 auto;

  justify-content: center;
}
textarea {
  height: var(--bigHeight);
}
::placeholder {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
form {
  display: flex;
  flex-direction: column;

  justify-content: center;
}

.mailSent {
  color: var(--red);
  font-size: var(--medium);
  font-weight: 500;
  margin: 2rem auto 0 auto;
  text-align: center;
}
