* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
  margin: 0;
}


html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}



.webgl {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
    pointer-events: none;
}



/* First screen */


.swipe-intro,
.site-content {
  scroll-snap-align: start;
}

.swipe-intro {
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;

  background: black;
  color: white;
  text-align: center;
}

/* Rest of website */
.site-content {
  min-height: 100svh;
  padding: 40px 20px;
  background: white;
  color: black;
}

.swipe-message p {
  margin-top: 10px;
  opacity: 0.7;
}

.swipe-arrow {
  font-size: 32px;
  margin-top: 20px;
  animation: swipeHint 1.5s infinite;
}

@keyframes swipeHint {
  0% {
    transform: translateY(10px);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-8px);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0.3;
  }
}

h1 {
  margin-top: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;

}

h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* List */

.clean-list {
  list-style: none;
  padding: 0;
  margin: 24px auto;

  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  width: fit-content;
}

.clean-list li {
  position: relative;
  /*padding-left: 22px;*/

  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;

}

.clean-list li::before {
  content: "";
  top: 0;
  width: auto;
  height: auto;
  background: none;
}

h3{
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}


p {
  margin-top: 20px;

  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
