@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.introduction h3 {
  text-align: center;
}
.introduction p {
  margin-top: 1rem;
}

.contact-form {
  max-width: 420px;
  margin: 2rem auto;
}

.introduction {
  margin-top: 1.5rem;
}

.introduction h3 {
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

.feedback-input {
  color: var(--text-color);
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border: 1px solid var(--mondrian-yellow);
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
  outline: 0;
}

.feedback-input:focus {
  border: 1px solid var(--mondrian-red-pale);
}

textarea {
  height: 150px;
  line-height: 150%;
  resize: vertical;
  color: #000;
}

[type="submit"] {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  width: 100%;
  background: var(--mondrian-red);
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  color: white;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.3s;
  margin-top: -4px;
  font-weight: 700;
}
[type="submit"]:hover {
  background: var(--mondrian-red-pale);
}
