.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
  width: 100%;
  margin-top: 2em;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

#contact-form input,
#contact-form textarea {
  background-color: rgba(255, 255, 255, 0.246);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  resize: none;
  font-family: inherit;
  box-shadow: none;
  outline: none;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.246);
  color: white;
}

#contact-form button {
  background-color: white;
  color: black;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
}

