body {
  overflow: hidden;
  height: 100vh;
  display: flex;
  margin: 0;
}
.bg {
  background: linear-gradient(-45deg, #DCDB46, #5078BB,#56BB70, #5992AF,#7A54A2);
  background-size: 400% 400%;
  animation: gradientBG 20s ease infinite;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.center {
  margin: auto;
  min-width: 50%;
}
.card {
  position: relative;
  /* width: 100%; */
  margin: 50px auto;
  /* box-shadow: 0 0 150px 0px rgba(255, 255, 255, 0.05); */
  /* background-color: rgba(255, 255, 255, 0.05); */
  border-radius: 10px;
  animation: smaller 1s ease-in-out 4s;
  animation-fill-mode: forwards;
}

.card:after {
  content: "";
  margin: auto;
  display: block;
  width: 0%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  animation: border 1s ease-in-out 4s;
  animation-fill-mode: forwards;
}

.logo {
  background: url("rainbow.png") no-repeat center;
  background-size: contain;
  width: 100%;
  height: 60vmin;
  margin: auto;
}
.coming-soon h2 {
  text-transform: uppercase;
  color: rgba(29, 35, 78,0.7);
  font-family: "Asap", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  opacity: 0;
  text-align: center;
  animation: fadin 1s ease-in-out 4.5s;
  animation-fill-mode: forwards;
}
@media (max-width: 767px) {
  .coming-soon h2 {
    font-size: 2rem;
  }
}

@keyframes smaller {
  0% {
    margin-top: 50px;
  }
  100% {
    margin-top: 10px;
  }
}

@keyframes border {
  0% {
    width: 0%;
  }
  100% {
    width: 40%;
  }
}
@keyframes fadin {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
