.contact {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.footercontainer {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.contactBackground {
  background-color: var(--lightwhite);
  padding-top: 40px;
  padding-bottom: 40px;
}
.contactBtn {
  background-color: var(--black);
  color: var(--white);
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 8px 16px 0 var(--lightgray), 0 6px 20px 0 var(--lightgray1);
}
.contactBtn:hover {
  background-color: var(--orange);
  color: var(--white);
}
.form-group {
  padding-top: 10px;
}
ul.social-buttons {
  margin-bottom: 0;
}
ul.social-buttons li a {
  font-size: 20px;
  line-height: 50px;
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--white);
  border-radius: 100%;
  outline: none;
  background-color: var(--gray1);
  box-shadow: 0 8px 16px 0 var(--lightgray), 0 6px 20px 0 var(--lightgray1);
}
ul.social-buttons li a:active,
ul.social-buttons li a:focus,
ul.social-buttons li a:hover {
  background-color: var(--orange);
}
span.copyright {
  font-size: 90%;
  line-height: 40px;
  text-transform: none;
}