body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: "Montserrat";
  background: rgb(3, 22, 58);
  background: linear-gradient(
    61deg,
    rgba(10,41,75,1) 30%,
    rgba(255, 255, 255, 1) 100%
  );
  background-size: 800% 100%;
  animation: 2s forwards 0s gradient;
}

.container {
  height: 100%;
  display: flex;
  align-items: center;
}

.square {
  border: 2px solid black;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 3px black;
  background-color: #fffbfc;
}

.divider {
  padding-bottom: 10px;
  border-bottom: 1px solid #0a294b;
}

.text {
  color: #0a294b;
}

.title {
  font-size: 7rem;
  font-weight: 200;
}

.subtitle {
  font-size: 1.5em;
  font-weight: 300;
}

.coming {
  animation: 1s forwards 0.3s blur;
  opacity: 0%;
  width: 100%;
  text-align: right;
  padding-top: 1rem;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .title {
    font-size: 4rem;
    font-weight: 200;
  }

  .subtitle {
    font-size: 1em;
    font-weight: 300;
  }
  .coming {
  }
}

@keyframes blur {
  0% {
    opacity: 100%;
    -webkit-filter: blur(1000px);
    -moz-filter: blur(1000px);
    -o-filter: blur(1000px);
    -ms-filter: blur(1000px);
  }

  100% {
    opacity: 100%;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
