html, body {
  height: 100%;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.banner-bg {
  animation: animate 20s ease infinite;
}

.container{
  width:1025px;
}
.logo {
  max-width:40%;
}

.vertical-center {
  height:100%;
  width:100%;

  text-align: center;  /* align the inline(-block) elements horizontally */
  font: 0/0 a;         /* remove the gap between inline(-block) elements */
}

.vertical-center:before {    /* create a full-height inline block pseudo=element */
  content: ' ';
  display: inline-block;
  vertical-align: middle;  /* vertical alignment of the inline element */
  height: 100%;
}

.vertical-center > .container {
  max-width: 100%;

  display: inline-block;
  vertical-align: middle;  /* vertical alignment of the inline element */
}
@keyframes animate {
  0% {
    background-color: #B3B792;
  }
  20% {
    background-color: #E5E0D8;
  }
  40% {
    background-color: #D2AB80;
  }
  60% {
    background-color: #725C3A;
  }
  80% {
    background-color: #E5D2B8;
  }
  100% {
    background-color: #F6F4F1;
  }
}

.logo{
  h2{
    
  }
}
@media (max-width: 768px) {
  .vertical-center:before {
    /* height: auto; */
    display: none;
  }

.logo {
  max-width:60%;
}
}
.footer{
  position: absolute;
  width: 100%;
  padding: 20px 50px;
  bottom:0;
  color:#ffffff;
  text-align: center;
}