@font-face {
  src: url(/assets/Trixie.ttf);
  font-family: Trixie;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

html,
body {
  font-family: Trixie, Tahoma, Verdana, Geneva, sans-serif;
  height: 100%;
  width: 100%;
  max-width: 100vw;
  overflow-y: hidden;
}

body {
  background: #000;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

.top {
  position: fixed;
}

.logo {
  padding: 1.4em 0 0 1.2em;
}

.sm {
  width: 95%;
}

.bg {
  display: none;
}

main {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#twitter {
  margin-top: 3px;
}

.content {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.copy {
  width: 55%;
  max-width: 560px;
  margin: auto;
  text-align: center;
  font-size: 24px;
}
.copy .one,
.copy .two,
.copy .three {
  white-space: nowrap;
}

.heroLogo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroLogo img {
  max-width: 150px;
}

.link {
  position: relative;
  transition: 0.2s ease-in;
}
.link:after {
  content: "";
  display: block;
  width: 100%;
  height: 2.6px;
  border-radius: 3.4px;
  background: #fff;
  position: absolute;
  bottom: 5px;
  left: 0;
}
.link:hover {
  color: #cdc9c9;
}

.divider {
  width: 185px;
  height: 2.6px;
  margin: 0.6em 0 1.6em 0;
  background: #fff;
  border-radius: 2px;
}

.icons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon:not(:first-child) {
  margin-left: 1em;
}

.icon {
  transition: 0.2s ease-in;
}
.icon:hover {
  transform: scale(1.1);
}

.show-m {
  display: none;
}

@media (max-width: 900px) {
  main {
    height: -moz-fit-content;
    height: fit-content;
    min-height: 100vh;
  }
  .copy {
    width: 70%;
  }
}
@media (max-width: 834px) {
  .copy {
    width: 73%;
  }
}
@media (max-width: 734px) {
  .copy {
    margin-top: 2em;
    width: 80%;
  }
  .copy .one,
  .copy .two,
  .copy .three {
    white-space: normal;
  }
}
@media (max-width: 620px) {
  .logo img {
    width: 80%;
  }
  .copy {
    margin-top: 3em;
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .logo {
    padding: 0.8em 0 0 0px;
    background: #000;
  }
  .sm {
    display: none;
  }
  .bg {
    display: block;
    max-width: 200px;
  }
  .copy {
    margin-top: -3em;
    font-size: 16px;
    width: 95%;
  }
  .copy .one,
  .copy .two,
  .copy .three {
    white-space: normal;
  }
  .sp1 {
    display: none;
  }
  .icon:not(:first-child) {
    margin-left: 1em;
  }
  .link {
    display: inline;
  }
  .link:after {
    height: 1.6px;
    bottom: 3px;
  }
  .divider {
    margin: 0.6em 0 1.6em 0;
    height: 2.4px;
  }
  .icon {
    transform: scale(0.8);
  }
  .show-m {
    display: block;
  }
}
@media (max-width: 400px) {
  .copy {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .copy {
    font-size: 17px;
  }
}
@media (max-height: 568px) {
  body {
    overflow-y: auto;
  }
  .top {
    z-index: 3;
    height: 70px;
  }
  .copy {
    font-size: 16px;
  }
}
.typewriter {
  width: 65%;
  margin: auto;
  text-align: center;
  font-size: 1.5em;
  font-size: 32px;
}

.typewriter h1 {
  font-size: 32px;
  color: #fff;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em; /* Adjust as needed */
  animation: typing 3.5s steps(20, end), blink-caret 0.5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: orange;
  }
}/*# sourceMappingURL=two.css.map */