html {
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif, system-ui;
}
body * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.main-cnt {
  width: 100%;
  height: 100dvh;
  color: white;
}
.main-cnt .main-cnt-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  background-image: url("../img/background.jpg");
  background-size: cover;
  background-position: center center;
}
.main-cnt .main-cnt-inner .main-menu-header {
  position: relative;
  top: -120px;
  left: 8px;
  text-align: center;
}
.main-cnt .main-cnt-inner .main-menu-header .main-menu-logo-link {
  display: block;
  text-decoration: none;
}
.main-cnt .main-cnt-inner .main-menu-header .main-menu-logo-link .lanuya-3d-logotype {
  width: 320px;
  animation: fade-in 1s ease;
  transition: all 0.25s ease;
}
.main-cnt .main-cnt-inner .main-menu-body {
  position: relative;
  top: -80px;
  animation: fade-in 2s ease;
}
.main-cnt .main-cnt-inner .main-menu-body .main-menu-options {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
  text-align: center;
}
.main-cnt .main-cnt-inner .main-menu-body .main-menu-options .option {
  position: relative;
}
.main-cnt .main-cnt-inner .main-menu-body .main-menu-options .option:hover:after {
  width: 100%;
  left: 0;
}
.main-cnt .main-cnt-inner .main-menu-body .main-menu-options .option:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: 0;
  background-color: hsla(0, 0%, 100%, 0.35);
  transition: all 0.25s ease;
}
.main-cnt .main-cnt-inner .main-menu-body .main-menu-options .option:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: hsla(0, 0%, 100%, 0.05);
}
.main-cnt .main-cnt-inner .main-menu-body .main-menu-options .option .option-link {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: white;
}
.main-cnt .main-cnt-inner .footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  position: fixed;
  bottom: 24px;
  animation: fade-in 3s ease;
}
.main-cnt .main-cnt-inner .footer .footer-qr-code {
  width: 120px;
}
.main-cnt .main-cnt-inner .footer .footer-qr-code .footer-qr-code-link {
  display: block;
  text-decoration: none;
  transition: all 0.5s;
}
.main-cnt .main-cnt-inner .footer .footer-qr-code .footer-qr-code-link:hover {
  transform: scale(110%);
}
.main-cnt .main-cnt-inner .footer .footer-qr-code .footer-qr-code-link .qr-code {
  width: 100%;
}
.main-cnt .main-cnt-inner .footer .footer-data {
  text-align: center;
}
.main-cnt .main-cnt-inner .not-allowed {
  opacity: 50%;
  cursor: not-allowed;
}

@media screen and (max-width: 768px) {
  .main-cnt .main-cnt-inner .main-menu-header {
    top: -60px;
  }
  .main-cnt .main-cnt-inner .main-menu-header .main-menu-logo-link .lanuya-3d-logotype {
    width: 240px;
  }
  .main-cnt .main-cnt-inner .footer {
    bottom: 18px;
  }
  .main-cnt .main-cnt-inner .footer .footer-qr-code {
    width: 100px;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=styles.css.map */
