body {
  background: url('/images/landing_bg.png') 0 0 / cover no-repeat;
  background-color: #000b17;
}

@media screen and (max-width: 1200px) {
  body {
    background-image: url('/images/landing_bg_mobile.png');
  }
}

#__next {
  overflow: hidden;
}

@keyframes spin {
  100% {
    transform: rotate(1turn);
  }
}

.button-border {
  position: relative;
  border-color: transparent;
  background-clip: padding-box;
  border-width: 2px;
  border-radius: 30px;
}

.button-border::after {
  content: ' ';
  position: absolute;
  inset: -2px;
  background-image: linear-gradient(to right, red, blue);
  z-index: -1;
  border-radius: 30px;
}

.linear-g {
  background: linear-gradient(90deg, #00d4ff -12.46%, #463dff 108.66%);
}
.linear-g:hover {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(90deg, #00d4ff -12.46%, #463dff 108.66%);
}
