#email2 {
    display: none;
}

.question {
  color: #888;
  font-style: italic;
}

/* Style the form - display items horizontally */
.contact-form { 
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

/* Add some margins for each label */
.contact-form label {
  margin: 5px 10px 5px 0;
}

/* Style the input fields */
.contact-form input[type=text] {
  /* Setting width to 100% causes items to display vertically */ 
  width: 100%;
  vertical-align: middle;
  margin: 5px 10px 5px 0;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.contact-form input[type=text]:focus {
  background-color: lightgray;
  border-color: black;
}

/* Style the paragraph field */
.contact-form p {
  /* Setting width to 100% causes items to display vertically */ 
  width: 100%;
}

/* Style the textarea field */
.contact-form textarea {
  /* Setting width to 100% causes items to display vertically */ 
  width: 100%;
  height: 150px;
  margin: 5px 10px 5px 0;
  padding: 10px 10px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: none;
}
.contact-form textarea:focus {
  background-color: lightgray;
  border-color: black;
}

/* Style the submit button */
.contact-form button {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  margin-left: -1px;
  padding: 10px 20px;
  background-color: black;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: white;
}

.contact-form button:hover {
  background-color: #666;
  background-color: green;
}

.contact-form button:focus {
  background-color: #666;
  background-color: green;
}

/* Turn off the ugly blue outline when form field has focus */
input:focus, select:focus, textarea:focus, button:focus {
  outline: none;
}