@font-face{font-family:'LEMONMILK-Regular';src:url('../LEMONMILK-Regular.otf') format('opentype');font-display:swap;}
@font-face{font-family:'Mandan';src:url('../../../Mandan\ Demo.otf') format('opentype');font-display:swap;}

/* SVG animation */

.content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: grid;
	place-items: center;
	z-index: 1;
}

#theSVG {
	width: 100%;
	height: 100%;
	display: block;
}


@media screen and (min-width: 53em) {
	main {
		height: 100vh;
		display: flex;
		flex-direction: column;
	}
}

/* TEXT DESTORTION */

.distorted-text-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.distorted-text {
  font-size: 33vw;
  font-weight: bold;
  color: #fff;
  filter: url(#distortionFilter);
  text-transform: uppercase;
  letter-spacing: -0.2em;
}

#filter-svg {
  width: 0;
  height: 0;
  position: absolute;
}

/* marquee */

.marquee {
  position: absolute;
  bottom: 0%;
  width: 100%;
  margin: 0 auto;
  padding: 0.2em 0;
  white-space: nowrap;
  overflow: hidden;
  z-index: 3;
  background: #111;
  display: flex;
  align-items: center;
}
.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeAnim 60s linear infinite;
}
.marquee-content span {
  font-family: 'Narnia', 'LEMONMILK-Regular', 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  color: #eee;
  font-size: 4em;
  display: inline-block;
  padding-right: 2rem;
}

.marquee-II {
  position: absolute;
  top: 0%;
  width: 100%;
  margin: 0 auto;
  padding: 0.2em 0;
  white-space: nowrap;
  overflow: hidden;
  z-index: 3;
  background: #111;
  display: flex;
  align-items: center;
}
.marquee-content-II {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeAnimII 60s linear infinite;
}
.marquee-content-II span {
  font-family: 'Narnia', 'LEMONMILK-Regular', 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  color: #eee;
  font-size: 4em;
  display: inline-block;
  padding-right: 2rem;
}

@keyframes marqueeAnim {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marqueeAnimII {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media screen and (min-width: 53em) {
	body {
		--page-padding: 2rem 3rem;
	}
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
