@import url("https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&family=Cormorant:ital,wght@0,300..700;1,300..700&");
@font-face {
  font-family: "LofiForest";
  src: url("./assets/font/LofiForest_W-Bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
}
* {
  font-family: "Azeret Mono";
  color: #000000;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-stroke: 0;
}

body {
  background-color: #eeeeee;
  position: relative;
  overflow: hidden;
  height: 100svh;
  width: 100vw;
}

.marquee {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  opacity: 0;
  transition: opacity 1s;
  height: 100svh;
  width: auto;
  touch-action: none;
}
.marquee.show {
  opacity: 1;
}
.marquee-item {
  align-items: center;
  background-color: white;
  display: flex;
  width: auto;
  flex-wrap: nowrap;
  flex-direction: row;
}
.marquee-img {
  max-height: 80vh;
  display: block;
}

.content {
  height: 100svh;
  width: 100vw;
  display: flex;
  gap: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content .logo {
  height: 48px;
}
.content h1 {
  font-family: "LofiForest";
  font-size: 68px;
}
.content h2 {
  font-weight: 500;
  font-size: 16px;
}
.content p {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  line-height: 125%;
}
.content p span {
  text-decoration: underline;
}

@media screen and (max-width: 568px) {
  .content {
    padding: 16px;
  }
  .content .logo {
    height: 36px;
  }
  .content h1 {
    font-family: "LofiForest";
    font-size: 68px;
  }
  .content h2 {
    font-weight: 500;
    font-size: 14px;
    overflow-wrap: break-word;
  }
  .content p {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
  }
  .content p span {
    text-decoration: underline;
  }
}

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