* {
  box-sizing: border-box;
  font-size: 16px;
  color: rgb(32, 37, 44);
  font-family: 'Josefin Sans', sans-serif;
}

p {
  line-height: 2;
  letter-spacing: 0.1em;
}

.contact {
  width: 600px;
  height: 1000px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

h2 {
  margin: 80px 0 20px;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  text-decoration: underline;
}

h3 {
  font-size: 1.1rem;
  font-weight: normal;
}
.contactForm {
  margin: 30px 0;
}

.contactForm div {
  width: 100%;
  display: flex;
  /* align-items: center; */
}

.contactForm p {
  width: 120px;
  text-align: right;
  margin-right: 20px;
}

input[type=text],
input[type=email],
textarea {
  width: 400px;
  border: 1px solid rgb(32, 37, 44);
  padding: 5px 10px;
  margin: 5px;
  border-radius: 2px;
}

input[type=submit] {
  padding: 5px 50px;
  margin: 10px;
  text-align: center;
  /* border: 1px solid rgb(32, 37, 44); */
  border-radius: 4px;
  background: rgb(140, 206, 254);
  font-weight: bold;
  color: #f7f7f7;
}

input[type=submit]:hover {
  background: rgba(140, 206, 254, 0.7);
}


@media screen and (max-width:700px) {
  .contact {
    width: 90%;
  }

  .contactForm div {
    flex-direction: column;
  }

  .contactForm p {
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }

  input[type=text],
  input[type=email],
  textarea {
    width: 100%;
    margin: 5px auto;
  }
}