.contactForm {
  width: 40%;
  align-self: center;
  border-radius: 15px;
  box-shadow: 00px 10px 20px #d3d3d3, 0px 10px 20px #d3d3d3;
}

.center {
  display: flex;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  min-width: 400px;
  padding: 20px;
  margin-bottom: 30px;
}

input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid black;
  height: 30px;
  margin-top: 40px;
}

input:hover {
  border-bottom: 1px solid #047c64;
  cursor: text;
  font-family: obvia,sans-serif;
font-weight: 300;
font-style: normal;
}

textarea {
  width: 100%;
  height: 100px;
  margin-bottom: 20px;
  border: 0;
  border-bottom: 1px solid black;
  margin-top: 40px;
  font-family: obvia,sans-serif;
font-weight: 300;
font-style: normal;
}

textarea:hover {
  border-bottom: 1px solid #047c64;
  cursor:text;
}

::placeholder {
  padding: 5px;
  line-height: 2;
  font-family: obvia,sans-serif;
font-weight: 100;
font-style: italic;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

h1 {
  align-self: center;
  margin-top: 20px;
}

button {
  background-color: #047c64;
  color: #ffffff;
  padding: 15px;
  padding-left: 20px;
  padding-right: 20px;
  border: 0;
  border-radius: 50px;
  border: 1px solid #047c64;
  margin-bottom: 40px;
}

button:hover {
  cursor: pointer;
  color: #047c64;
  background-color : white;

}

button:active {
  background-color: white;
  color: #047c64;
}

@media only screen and (max-width: 720px){
  .contactForm {
    width: 90%;
    align-self: center;
    border-radius: 15px;
    box-shadow: 00px 10px 20px #d3d3d3, 0px 10px 20px #d3d3d3;
  }
  form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 90%;
    min-width: 200px;
    padding: 20px;
    margin-bottom: 30px;
  }
}
