main{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

#contact-container {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width:60%;
}

main h2 {
  margin: 30px 0px 20px 0px;
}

@media (max-width: 801px) {
  #contact-container {
    width:60%;
  }
}

@media (min-width: 500px) and (max-width: 800px) {
  #contact-container {
    width:80%;
  }
}

@media (max-width: 499px) {
  #contact-container {
    width:92%;
  }
}

form{
  width:100%;
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.contact-ele{
  margin:10px;
  width:60%
}

@media (min-width: 500px) and (max-width: 800px) {
  .contact-ele{
    margin:10px;
    width:80%
  }
}

@media (max-width: 499px) {
  .contact-ele{
    margin:10px;
    width:92%
  }
}

.contact-ele-title h4{
  text-align: left;
  margin:3px 0px;
}

.contact-ele-body{
  width:100%;
  text-align: left;
}

.contact-ele-body input[type="text"] {
  width:100%;
  height:30px;
}

.contact-ele-body input[type="email"] {
  width:100%;
  height:30px;
}

.contact-ele-body textarea {
  width:100%;
  height:200px;
}

button {
  background-color: #ffe96b;
  color: #000;
  border-radius: 10px;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1em;
  box-shadow: 0 5px 0 #b8860b;
}
button:hover {
  color: #000;
  opacity: 0.6;
}