body {
  color: #d7c2f3;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
  background: #1b0f26;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
  display: flex;
  overflow: hidden auto;
}

@keyframes smoothTextScaleUp {
  from {
    transform: scale(.6);
  }

  to {
    transform: scale(1);
  }
}

.info {
  transform-origin: center;
  z-index: 10;
  box-sizing: border-box;
  min-width: 280px;
  max-width: 90vw;
  padding: 1em;
  animation: .4s ease-out forwards smoothTextScaleUp;
}

.tagline {
  color: #c9a7ff;
  margin-bottom: 2em;
  font-size: 1.3rem;
}

h3 {
  color: #a06cd5;
  margin-top: 2em;
  margin-bottom: .1em;
  font-size: 2rem;
}

@keyframes expandWidth {
  0% {
    width: 0;
  }

  100% {
    width: 1000vh;
  }
}

@keyframes expandHeight {
  0% {
    height: 0;
  }

  100% {
    height: 1000vh;
  }
}

.after1, .after2, .after3 {
  content: "";
  z-index: 1;
  transform-origin: 100% 100%;
  position: fixed;
}

.after1 {
  z-index: -1;
  background: linear-gradient(to bottom right, #462255, #3e1e4f);
  width: 0;
  height: 100vh;
  animation: 1.5s ease-out forwards expandWidth;
  bottom: 0;
  right: 0;
  transform: rotate(30deg);
}

.after2 {
  z-index: -2;
  background: linear-gradient(to bottom right, #3c1a4d, #271633);
  width: 0;
  height: 100vh;
  animation: 2.7s ease-out forwards expandWidth;
  bottom: 0;
  right: 0;
  transform: rotate(15deg);
}

.after3 {
  z-index: -3;
  background: linear-gradient(to top left, #5b2a86, #341c4f);
  width: 100%;
  height: 0;
  animation: 3.5s linear forwards expandHeight;
  bottom: 0;
  left: 0;
  transform: rotate(-60deg);
}

.links a {
  color: #ddbaff;
  white-space: nowrap;
  margin: .4em 0;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color .2s ease-in-out;
  display: inline-block;
}

.underline-text {
  text-underline-offset: 2px;
  text-decoration: underline .04em;
}

.links a:hover {
  color: #fff;
}

.links a > img {
  vertical-align: -8%;
  height: .9em;
  transition: filter .3s;
}

.links a:hover > img {
  filter: brightness(1.3);
}

.subsical-logo-wrap {
  margin-bottom: 1em;
  display: inline-block;
  position: relative;
}

.subsical-bg {
  opacity: 0;
  z-index: -1;
  filter: brightness(.7) contrast(1.2) saturate(120%) opacity();
  background-image: url("guardia_logo.b95e2d7c.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 160px;
  height: 160px;
  animation: 1s ease-out forwards fadeIn;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)scale(1.3);
}

.subsical-text {
  color: #ddbaff;
  z-index: 1;
  font-family: DM Sans, sans-serif;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%)scale(1.1);
  }

  to {
    opacity: .3;
    transform: translate(-50%, -50%)scale(1.3);
  }
}

@keyframes textScaleFadeIn {
  from {
    opacity: 0;
    transform: scale(.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes smoothTextScaleDown {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(.85);
  }
}

h1, .subsical-text {
  color: #e0bbff;
  margin-bottom: .5em;
  font-size: 4rem;
  animation: .6s ease-out both textScaleFadeIn;
}

@media (height <= 600px) {
  .info {
    transform-origin: center;
    animation: .4s ease-out forwards smoothTextScaleDown;
  }

  h1 {
    font-size: 2.4rem;
  }

  .subsical-text {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .links a {
    font-size: 1rem;
  }

  .subsical-bg {
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%)scale(1);
  }
}

@media (width <= 600px) {
  .info {
    margin-top: 1em;
  }
}
/*# sourceMappingURL=index.3a01df49.css.map */
