@font-face {
  font-family: "Helvetica Now";
  src: url("../fonts/HelveticaNowDisplay-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Now" format("woff");
  src: url("../fonts/HelveticaNowDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  background: #050f19 url("../img/bg_overlay.svg") no-repeat fixed center;
  background-size: contain;
}
body::-webkit-scrollbar {
  width: 14px;
}
body::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 100px;
}
body::-webkit-scrollbar-thumb {
  background: #7D8AB0;
  border-radius: 100px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
body::-webkit-scrollbar-thumb:hover {
  background: rgba(219, 229, 255, 0.7568627451);
  border: 2px solid transparent;
  background-clip: padding-box;
}

.main {
  height: 88vh;
}
.main .code {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30vw;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 8px #293045;
  user-select: none;
  z-index: -1;
}
.main .bg-acnt {
  position: absolute;
  width: 0;
  height: 0;
  box-shadow: 0 0 300px 80px rgba(31, 104, 249, 0.6862745098);
}
.main .bg-acnt.bg-acnt-1 {
  bottom: 30%;
  left: 35%;
}
.main .bg-acnt.bg-acnt-2 {
  top: 30%;
  left: 15%;
}
.main .bg-acnt.bg-acnt-3 {
  top: 45%;
  right: 20%;
}
.main .msg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}
.main .msg .msg-text {
  font-size: 1.3em;
  color: #DCE7FE;
  font-weight: bold;
}
.main .msg .msg-btn {
  font-size: 1.1em;
  color: rgba(219, 229, 255, 0.7568627451);
  transition: 0.15s;
}
.main .msg .msg-btn:hover {
  transform: scale(1.1);
  font-weight: bold;
}
.main .msg .msg-btn:active {
  transform: scale(0.9);
}

@media screen and (max-width: 1024px) {
  .main .code {
    font-size: 40vw;
  }
  .main .msg .msg-text {
    font-size: 1.1em;
  }
  .main .msg .msg-btn {
    font-size: 1em;
  }
}
@media screen and (max-width: 540px) {
  .main .code {
    font-size: 30vh;
    writing-mode: vertical-rl;
  }
  .main .msg .msg-text {
    font-size: 1em;
  }
  .main .msg .msg-btn {
    font-size: 1em;
  }
}
