#contact{
  padding: 100px 0;
  background-color: #3d3d3d;
  text-align: center;
}

.contact-header{
  color: #fff;
}

.contact-subtext{
  color: #ccc;
  font-size: 16px;
  line-height: 26px;
  max-width: 600px;
  margin: 20px auto 40px;
}

.contact-cta .btn-primary{
  display: inline-block;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: .2s linear;
}

.contact-cta .btn-primary:hover{
  background-color: #2fb8de;
}

.contact-email{
  margin-top: 16px;
  font-size: 14px;
  color: #bbb;
}

.contact-email a{
  color: #48dbfb;
  font-weight: 600;
}

.contact-email a:hover{
  text-decoration: underline;
}

.contact-signoff{
  margin-top: 30px;
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: #ddd;
}

.contact-signoff span{
  color: var(--warm);
  font-weight: 700;
}

@media screen and (max-width: 900px){
  #contact{
    padding: 60px 0;
  }

  .contact-header{
    font-size: 26px;
  }

  .contact-subtext{
    font-size: 15px;
    line-height: 24px;
    padding: 0 10px;
  }

  .contact-signoff{
    font-size: 24px;
  }
}