h3 {
  text-wrap: balance;
  text-align: center;
}

.handles {
  display: flex;
  justify-content: center;
  gap: 5rem;
}

.handle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 0.375rem;
  transition: all 300ms;
}

form {
  display: flex;
  flex-wrap: wrap;
  min-width: 810px;
  justify-content: space-between;
}

.input-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 1.25rem;
}

input {
  width: 100%;
  border-radius: 0.375rem;
  border: none;
  background-color: #f2f3f4;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 20px;
}

input:focus {
  outline: 2px solid var(--light-2);
}

textarea {
  max-width: 810px;
  width: 100%;
  border-radius: 0.375rem;
  border: none;
  background-color: var(--light);
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 20px;
}
textarea:focus {
  outline: 2px solid var(--light-2);
}

button {
  width: 100%;
  background-color: var(--light);
  border-radius: 0.375rem;
  border: 2px solid var(--light-2);
  margin-bottom: 2rem;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
}
