main {
  display: block;
  align-content: center;
  background-color: var(--bg-color);
}

.contact-content {
  justify-items: center;
  align-content: center;
  margin: 5rem auto;
}

h2 {
  font-size: 3.5rem;
  margin-top: 0px;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  min-width: 300px;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  margin: 0.5rem;
  border: 1px solid #bbb;
  border-radius: 0.5rem;
  font-size: 1rem;
  resize: none;
}

.contact-form input {
  width: 100%;
}

textarea {
  width: 100%;
}

.radio-wrapper {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 0 auto;
}

.radio-group {
  display: flex;
  gap: 1em;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-weight: normal;
  cursor: pointer;
}

.prefer {
  width: 35%;
}

h6 {
  text-align: left;
  width: 100%;
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 768px) {
  .contact-section {
    min-height: fit-content;
  }
}