* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden !important;
}
body {
  background: #1e2124;
  height: 100vh;
  padding: 60px 0;
  color: #fff;
  font-family: sans-serif;
}

.container {
  width: 80%;
  height: calc(100vh - 120px);
  background: #46464638;
  margin: 0 auto;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  z-index: 10;
}
.shape1 {
  position: absolute;
  top: -1%;
  left: 3%;
  z-index: -1;
  height: 350px;
  width: 350px;
  animation: circle 60s infinite;
}
.shape2 {
  position: absolute;
  bottom: -5%;
  right: 3%;
  z-index: -1;
  height: 350px;
  width: 350px;
  animation: circle 60s infinite;
}
.main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main .coming__soon {
  padding: 70px;
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: #0d50ce;
  background: -webkit-linear-gradient(to right, #0d50ce 0%, #b80ec1 57%);
  background: -moz-linear-gradient(to right, #0d50ce 0%, #b80ec1 57%);
  background: linear-gradient(to right, #0d50ce 0%, #b80ec1 62%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -5%;
}
.main .title {
  font-size: 1.8rem;
}
.main a {
  padding-top: 1%;
  color: #fde37c;
  font-size: 17px;
}
/* ### MEDIA QUERIES ### */
@media (max-width: 768px) {
  .shape1,
  .shape2 {
    height: 150px;
    width: 150px;
    animation: none;
  }
  .shape1 {
    top: 0;
    left: 0;
  }
  .shape2 {
    bottom: 0;
    right: 0;
  }
  .main .coming__soon {
    letter-spacing: normal;
    margin-top: -15%;
    font-size: 4rem;
  }
  .main .title {
    font-size: 1.3rem;
  }
}

/* ### ANIMATIONS ### */
@keyframes circle {
  100% {
    transform: rotate(360deg);
  }
}
