@font-face {
  font-family: Satoshi;
  src: url(fonts/satoshi/Fonts/Variable/Satoshi-Variable.ttf);
}

@font-face {
  font-family: Satoshi-italic;
  src: url(fonts/satoshi/Fonts/Variable/Satoshi-VariableItalic.ttf);
}

@media screen and (max-width: 1214px) {
  * {
    overflow: hidden;
    visibility: hidden;
    /* background-image: /assets/; */
  }
}

:root {
  --text: #e0eef9;
  --bg: #02070b;
  --primary: #9834da;
  --secondary: #3b1a8e;
  --accent: #87bfe9;
}

body {
  font-family: Satoshi;
  background: var(--bg);
  height: 100%;
  width: 100% !important;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
}

.follow-cursor {
  position: fixed;
  left: 50%;
  right: 50%;
  border-radius: 50%;
  opacity: 0.8;
  height: 200px;
  aspect-ratio: 1;
  background: linear-gradient(
    90deg,
    rgba(224, 238, 249, 1) 0%,
    rgba(135, 191, 233, 1) 33%,
    rgba(152, 52, 218, 1) 66%,
    rgba(59, 26, 142, 1) 100%
  );
  translate: -50% -50%;
  z-index: -2;
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  from {
    rotate: 0deg;
  }

  50% {
    scale: 1.5 1.5;
  }

  to {
    rotate: 360deg;
  }
}

.blur {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  backdrop-filter: blur(9vmax);
}

footer {
  width: 100vw;
}

.wrapFooter {
  width: 100%;
}

.footerContent {
  width: 100%;
}

.wrap-o {
  width: 100%;
  margin: 0 auto;
}

.wrap-i {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.cta {
  --parallax-speed: -10;
  padding-bottom: 10rem;
  padding-top: 10rem;
  text-align: center;
}

.cta-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--text);
  /* white-space: pre; */
}

.some-title {
  margin: 0;
  padding: 0;
  line-height: 0.8;
  font-size: 8.5rem;
}

.cta h2 > span {
  display: block;
}

.cta h2 > span:nth-child(1) {
  margin-left: -10.5rem;
}

.cta h2 > span:nth-child(2) {
  margin-left: 14rem;
}

.cta h2 > span:nth-child(3) {
  margin-left: -1.5rem;
}

.cta .ctaBtn a {
  position: relative;
  top: -13rem;
  left: -23rem;
  /* top: 73.6rem;
  left: 11.8rem; */
}

.cta .ctaBtn button {
  border-width: 7.5px;
  border-radius: 50px;
  width: 9.12rem !important;
  font-weight: 650;
  transition: 0.25s ease-in-out;
}

.cta .ctaBtn button:hover {
  border-width: 3px;
  border-radius: 49px;
  color: var(--text);
  background: var(--accent);
  letter-spacing: 1em;
  cursor: pointer;
  p {
    mix-blend-mode: difference;
    cursor: pointer;
  }
}

/** Scroll snapping */
.main {
  scroll-snap-type: y mandatory;
  height: 100dvh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

.main > * {
  scroll-snap-align: center;
}

/** Footer */

footer {
  --paddingSize: 2.5rem;
  position: relative;
  height: 40rem;
  background: var(--secondary);
}

.footerContent {
  position: absolute;
  padding: 0;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  flex-direction: row;
  align-content: center;
}

.thanksText {
  padding: var(--paddingSize);
  color: var(--text);
}

.barrier {
  /* background: red; */
  flex-grow: 1;
}

.socials {
  padding: var(--paddingSize);
  display: flex;
  flex-direction: column;
}

.thanksText h1 {
  font-size: 5em;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.thanksText p {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 1rem;
}

.copyright {
  position: absolute;
  bottom: 0;
  margin: .5em;
}

.copyright p {
  position: relative;
  bottom: 0;
  color: var(--accent);
}

.socialsIcons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
}

.socialsIcons img,
.socialsIcons a {
  --size: 100px;
  height: var(--size);
  width: var(--size);
}

.socialsIcons a:nth-child(even) {
  margin-left: 100px;
}

.socials > h1 {
  position: relative;
  color: var(--text);
  transform: translate(-50%, 0);
  left: 50%;
}