body {
  background: linear-gradient(135deg, #2b3a67, #1c2b49, #354a7e);
  background-size: 200% 200%;
  -webkit-animation: gradientAnimation 15s ease infinite;
          animation: gradientAnimation 15s ease infinite;
  color: #fff;
}
@-webkit-keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  text-align: center;
}
.hc__container__logo {
  max-height: 60vh;
  margin-top: -20px;
}
.hc__container h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  margin-top: -20px;
  font-size: 2em;
  color: #5eaae1;
}
