@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500&family=Poppins:wght@300;400;500;700&display=swap");
@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

:root {
  --card-height: 65vh;
  --card-width: calc(var(--card-height) / 1.5);
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  font-family: 'Poppins', 'Noto Sans TC', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background: #F1F2F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #0d0c22;
  }
}

.Landingcont {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  padding: 50px;
  background-color: #F1F2F5;
  opacity: 1;
}

.Landingcont::after {
  position: absolute;
  content: "";
  top: calc(var(--card-height) / 6);
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-filter: blur(calc(var(--card-height) / 6));
          filter: blur(calc(var(--card-height) / 6));
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--rotate)), color-stop(#FFB000), color-stop(23%, #fa709a), to(#1D52FF));
  background-image: linear-gradient(var(--rotate), #FFB000, #fa709a 23%, #1D52FF);
  opacity: 1;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  -webkit-animation: spin 2.5s linear infinite;
          animation: spin 2.5s linear infinite;
}

@media (prefers-color-scheme: dark) {
  .Landingcont::after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--rotate)), color-stop(#1D52FF), color-stop(33%, #fa709a), to(#F1981E));
    background-image: linear-gradient(var(--rotate), #1D52FF, #fa709a 33%, #F1981E);
  }
}

.Landingcont__logo {
  width: 100%;
  margin-bottom: 2rem;
  pointer-events: none;
}

.Landingcont__logo__img {
  width: 100%;
  aspect-ratio: 494 / 164;
  background-image: url(../img/log_mights.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (prefers-color-scheme: dark) {
  .Landingcont__logo__img {
    background-image: url(../img/log_mights_dark.png);
  }
}

.Landingcont__logo img {
  width: 100%;
}

.Landingcont__logo span {
  position: absolute;
  display: block;
  text-indent: -9999px;
  opacity: 0;
}

.Landingcont__text {
  font-size: 14px;
  text-align: center;
  color: #1D52FF;
}

@media (prefers-color-scheme: dark) {
  .Landingcont__text {
    color: #FFB000;
  }
}

.Landingcont__text a {
  color: #1D52FF;
  text-decoration: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (prefers-color-scheme: dark) {
  .Landingcont__text a {
    color: #FFB000;
  }
}

.Landingcont__text a:hover {
  color: #FFB000;
}

@media (prefers-color-scheme: dark) {
  .Landingcont__text a:hover {
    color: #1D52FF;
  }
}

@media (prefers-color-scheme: dark) {
  .Landingcont {
    background: #0d0c22;
  }
}

@-webkit-keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}

@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}

.Copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  padding: 1rem;
  font-size: 12px;
  text-align: center;
  color: #CCCFE9;
}

@media (prefers-color-scheme: dark) {
  .Copyright {
    color: #243153;
  }
}
/*# sourceMappingURL=landingpage.css.map */