body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: black;
}


h1 { font-family: Arial, Helvetica, sans-serif; }

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 10px;
  width: 100%;
  margin: auto;
  justify-items: center;
}

.image-container {
  width: 350px;
  height: 350px;
  overflow: hidden;
  position: relative;
  & img {
    position: relative;
    left: 50%;
    bottom: 20%;
    transform: translate(-50%, 0);
    transition: ease;
  }
}
#app {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: aliceblue; */
}

.spinner {
  width: 100px;
  height: 100px;
  border-top: 5px solid #f3f3f3;
  border-radius: 50%;
  animation: spin 2s cubic-bezier(0.465, 0.183, 0.153, 0.946) infinite;
  margin: 30px;
}

.spinner-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.progress {
  color: white;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 40px;
  margin-top: 10px;
  transition: ease-in-out;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.scrollbar {
  position: fixed;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;

  & .inner {
    height: 100%;
    position: relative;
  }

  & .thumb {
    min-height: 80px;
    width: 8px;
    background-color: rgb(50, 50, 50);
    position: absolute;
    right: 0;
    border-radius: 0;
    cursor: grab;
  }
}
