*{
  margin: 0;
  padding: 0;
  font-family: "montserrat",sans-serif;
}
body{
  background: url(bg.jpg) no-repeat center;
  background-size: cover;
  opacity: 0.9;
}

.contact-section{
margin-top: 50px;
  padding: 40px 0;

}
.contact-section h1{
  text-align: center;
  color: #000000;
}
.border{
  width: 100px;
  height: 10px;
  background: #000000;
  background: none;
  margin: 40px auto;
}

.contact-form{
  max-width: 600px;
  margin: auto;
  padding: 0 10px;
  overflow: hidden;
background: none;
}

.contact-form-text{
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 0;
  border:none;
  border: 1px solid #000000;
  background: none;
  padding: 20px 40px;
  outline: none;
  color: #000000;
  transition: 0.5s;
box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(255, 255, 255, 0.09) 0px 32px 16px;
}
.contact-form-text:focus{
  box-shadow: 0 0 10px 4px #000000;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
}
textarea.contact-form-text{
  resize: none;
  height: 120px;
}
.contact-form-btn{
  float: right;
  border: 0;
  background: #000000;
  color: #fff;
  padding: 12px 50px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.5s;
}
.contact-form-btn:hover{
  background: #26d48c;
}

.home-button {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #000000;
  padding: 10px 20px;
  border-radius: 50px;
  transition: 0.5s;

}

.home-button a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}

.home-button:hover {
  background-color: #26d48c;
}

.home-button:hover a {
  color: #ffffff;
}