body {
  padding: 0;
  margin: 0;
  height: 600vh;
  width: 100vw;
  background: #90836a;
  color: #000;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

h1 {
  font-size: 8vw;
  font-family: "Neue World Ultralight";
  font-weight: lighter;
  text-align: center;
}

.slider-section {
  height: 22vh;
  bottom: 0;
  position: fixed;
  width: 100%;
}

.wheel {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300vw;
  height: 300vw;
  max-width: 2000px;
  max-height: 2000px;
}

.wheel__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 6%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

img {
  width: 100%;
  pointer-events: none;
  z-index: 999;
  cursor: pointer;
}

.scroll-down-icon {
  position: fixed;
  top: 4em;
  right: 2em;
  transform: rotate(90deg);
}
.scroll-down-icon img {
  width: 50px;
}

.scroll-down {
  font-family: "Neue World Ultralight";
  position: fixed;
  top: 3em;
  left: 2em;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  overflow: visible;
}
