.contact-form {
  max-width: 1200px;
  margin: 2rem auto;

  background-color: var(--yellow-light);
  border: 3px solid #000;
    box-shadow: 6px 6px 0 #000;
}

.contact-form label {
    font-family: "Asimovian", sans-serif;
    font-size: 1.2rem;
}

.input-field {
    background-color: var(--blue-light);
    border: 3px solid #000;
    box-shadow: 6px 6px 0 #000;
    color: #fff;
    font-family: "Asimovian", sans-serif;
}

.input-field:focus {
    outline: none;
}

.input-btn {
    background-color: var(--green-light);
    border: 3px solid #000;
    box-shadow: 6px 6px 0 #000;
    font-family: "Asimovian", sans-serif;
    width: 330px;
    margin: 0.5rem auto;
    cursor: pointer;
}
