body {
  overflow: hidden;
  font-family: 'Bungee';
  height: 100vh;
  background: linear-gradient(135deg, #cff2c9, #f6ffce);
  cursor: auto !important;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
}

.link.disabled {
  pointer-events: none;
}


.header>.name,
.title,
.num {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0px -6px 0 #212121,
    0px -6px 0 #212121,
    0px 6px 0 #212121,
    0px 6px 0 #212121,
    -6px 0px 0 #212121,
    6px 0px 0 #212121,
    -6px 0px 0 #212121,
    6px 0px 0 #212121,
    -6px -6px 0 #212121,
    6px -6px 0 #212121,
    -6px 6px 0 #212121,
    6px 6px 0 #212121,
    -6px 9px 0 #212121,
    0px 9px 0 #212121,
    6px 9px 0 #212121,
    0 19px 1px rgba(0, 0, 0, .1),
    0 0 6px rgba(0, 0, 0, .1),
    0 6px 3px rgba(0, 0, 0, .3),
    0 12px 6px rgba(0, 0, 0, .2),
    0 18px 18px rgba(0, 0, 0, .25),
    0 24px 24px rgba(0, 0, 0, .2),
    0 36px 36px rgba(0, 0, 0, .15) !important;
}

.click-me{
  z-index: 20;
  position: relative;
  text-align: right;
  font-size: 18px;
  margin: auto;
  padding: 20px 20px;

  color: #fff;

  text-shadow: 0px -3px 0 #212121,
    0px -3px 0 #212121,
    0px 3px 0 #212121,
    0px 3px 0 #212121,
    -3px 0px 0 #212121,
    3px 0px 0 #212121,
    -3px 0px 0 #212121,
    3px 0px 0 #212121,
    -3px -3px 0 #212121,
    3px -3px 0 #212121,
    -3px 3px 0 #212121,
    3px 3px 0 #212121,
    -3px 6px 0 #212121,
    0px 6px 0 #212121,
    3px 6px 0 #212121 !important;
}

.name {
  right: 130px !important;
  font-size: clamp(20px, 10vw, 120px);
  text-align: right;
  color: #f6ffce;
  position: absolute;
  right: 0;
  padding-top: 80px !important;
  z-index: 4;
}

.description {
  font-size: 20px;
  color: #212121;
  position: relative;
  text-align: right;
  padding-top: 10px;
  text-shadow: none !important;
}

.carousel {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}

.carousel-item {
--items: 7;
  --width: clamp(150px, 30vw, 340px);
  --height: clamp(200px, 40vw, 480px);
  --x: calc(var(--active) * 400%);
  --y: calc(var(--active) * 100%);
  --rot: calc(var(--active) * 120deg);
  --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 20px;
  top: 50%;
  left: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transform-origin: 0% 100%;
  box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.2);
  background: #f6ffce;
  pointer-events: all;
  transform: translate(var(--x), var(--y)) rotate(var(--rot));
  transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
  box-shadow: 0px -6px 0 #212121, 0px -6px 0 #212121, 0px 6px 0 #212121, 0px 6px 0 #212121, -6px 0px 0 #212121, 6px 0px 0 #212121, -6px 0px 0 #212121, 6px 0px 0 #212121, -6px -6px 0 #212121, 6px -6px 0 #212121, -6px 6px 0 #212121, 6px 6px 0 #212121, -6px 18px 0 #212121, 0px 18px 0 #212121, 6px 18px 0 #212121, 0 19px 1px rgb(0 0 0 / 10%), 0 0 6px rgb(0 0 0 / 10%), 0 6px 3px rgb(0 0 0 / 30%), 0 12px 6px rgb(0 0 0 / 20%), 0 18px 18px rgb(0 0 0 / 25%), 0 24px 24px rgb(0 0 0 / 20%), 0 36px 36px rgb(0 0 0 / 15%);
  opacity: var(--opacity);
}

.description-box {
  position: absolute;
  z-index: 3;
  color: #fff;
  bottom: 30px;
  left: 130px;
  background: #212121;
  padding: 10px 20px 10px 20px;
  max-height: 20vw;
  max-width: 40vw !important;
  border-radius: 15px;
  font-size: clamp(14px, 1vw, 18px);
  max-width: 30%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
}

.carousel-item .carousel-box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-family: 'Bungee';
}

.carousel-item .carousel-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
}

.carousel-item .title {
  position: absolute;
  z-index: 1;
  color: #fff;
  bottom: 20px;
  left: 20px;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-size: clamp(20px, 3vw, 40px);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.carousel-item .num {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 10px;
  left: 20px;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-size: clamp(40px, 5vw, 80px);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

.layout {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.layout:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 90px;
  width: 10px;
  height: 100%;
  border: 2px solid #212121;
  border-top: none;
  border-bottom: none;
  opacity: 0.15;
}

.layout .box {
  position: absolute;
  bottom: 0;
  left: 30px;
  color: #212121;
  transform-origin: 0% 10%;
  transform: rotate(-90deg);
  font-family: 'Bungee';
  font-size: 9px;
  line-height: 1.4;
  text-transform: uppercase;
  opacity: 0.4;
}

.image-logo {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Bungee';
  pointer-events: all;
  color: black;
  text-decoration: none;
  font-size: 20px;
  overflow: hidden;
  padding-bottom: 0.1em;
}

.social {
  position: absolute;
  z-index: 10;
  bottom: 30px;
  right: 30px;
  color: #212121;
  opacity: 1;
}

.social a {
  display: inline-block;
  margin-left: 3px;
}

.social svg {
  --fill: #212121;
  width: 70px;
  height: 70px;
}

.cursor {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 3px solid #212121;
  margin: calc(var(--size) * -0.5) 0 0 calc(var(--size) * -0.5);
  transition: transform 0.85s cubic-bezier(0, 0.02, 0, 1);
  display: none;
  pointer-events: none !important;
}

@media screen and (max-width: 2000px) {
  .carousel-item {
  --items: 7;
    --width: clamp(150px, 30vw, 320px);
    --height: clamp(200px, 40vw, 450px);
    --x: calc(var(--active) * 400%);
    --y: calc(var(--active) * 100%);
    --rot: calc(var(--active) * 120deg);
    --opacity: calc(var(--zIndex) / var(--items) * 3.2 - 2);
    overflow: hidden;
    position: absolute;
    z-index: var(--zIndex);
    width: var(--width);
    height: var(--height);
    margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
    border-radius: 20px;
    top: 50%;
    left: 50%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform-origin: 0% 100%;
    box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.2);
    background: #f6ffce;
    pointer-events: all;
    transform: translate(var(--x), var(--y)) rotate(var(--rot));
    transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
    box-shadow: 0px -6px 0 #212121, 0px -6px 0 #212121, 0px 6px 0 #212121, 0px 6px 0 #212121, -6px 0px 0 #212121, 6px 0px 0 #212121, -6px 0px 0 #212121, 6px 0px 0 #212121, -6px -6px 0 #212121, 6px -6px 0 #212121, -6px 6px 0 #212121, 6px 6px 0 #212121, -6px 18px 0 #212121, 0px 18px 0 #212121, 6px 18px 0 #212121, 0 19px 1px rgb(0 0 0 / 10%), 0 0 6px rgb(0 0 0 / 10%), 0 6px 3px rgb(0 0 0 / 30%), 0 12px 6px rgb(0 0 0 / 20%), 0 18px 18px rgb(0 0 0 / 25%), 0 24px 24px rgb(0 0 0 / 20%), 0 36px 36px rgb(0 0 0 / 15%) !important;
    opacity: var(--opacity);
  }

}

@media screen and (max-width: 1200px) {
  .description-box {
    display: none !important;
  }

  .name {
    left: 30px;
    text-align: left;
    font-size: clamp(20px, 10vw, 130px);
    color: #f6ffce;
    position: absolute;
    margin-left: auto;
    padding-top: 28px !important;
    z-index: 4;
  }

  .description {
    font-size: 18px;
    color: #212121;
    position: relative;
    text-align: left;
    padding-top: 8px;
    text-shadow: none !important;
  }
}

@media screen and (max-width: 800px) {
  .name {
    left: 30px;
    text-align: left;
    font-size: 30px;
    color: #f6ffce;
    position: absolute;
    margin-left: auto;
    padding-top: 28px !important;
    z-index: 4;
  }

  .description {
    font-size: 12px;
    color: #212121;
    position: relative;
    text-align: left;
    padding-top: 8px;
    text-shadow: none !important;
  }

  .carousel-item .num {
    position: absolute;
    z-index: 1;
    color: #fff;
    top: 10px;
    left: 20px;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    font-size: clamp(20px, 10vw, 40px);
  }

  .header>.name,
  .title,
  .num {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0px -3px 0 #212121,
      0px -3px 0 #212121,
      0px 3px 0 #212121,
      0px 3px 0 #212121,
      -3px 0px 0 #212121,
      3px 0px 0 #212121,
      -3px 0px 0 #212121,
      3px 0px 0 #212121,
      -3px -3px 0 #212121,
      3px -3px 0 #212121,
      -3px 3px 0 #212121,
      3px 3px 0 #212121,
      -3px 6px 0 #212121,
      0px 6px 0 #212121,
      3px 6px 0 #212121 !important;
  }

  .carousel-item {
  --items: 7;
    --width: clamp(200px, 30vw, 350px);
    --height: clamp(280px, 40vw, 480px);
    --x: calc(var(--active) * 400%);
    --y: calc(var(--active) * 100%);
    --rot: calc(var(--active) * 120deg);
    --opacity: calc(var(--zIndex) / var(--items) * 3.2 - 2);
    overflow: hidden;
    position: absolute;
    z-index: var(--zIndex);
    width: var(--width);
    height: var(--height);
    margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
    border-radius: 10px;
    top: 40%;
    left: 50%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform-origin: 0% 100%;
    box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.2);
    background: #f6ffce;
    pointer-events: all;
    transform: translate(var(--x), var(--y)) rotate(var(--rot));
    transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
    box-shadow: 0px -6px 0 #212121, 0px -6px 0 #212121, 0px 6px 0 #212121, 0px 6px 0 #212121, -6px 0px 0 #212121, 6px 0px 0 #212121, -6px 0px 0 #212121, 6px 0px 0 #212121, -6px -6px 0 #212121, 6px -6px 0 #212121, -6px 6px 0 #212121, 6px 6px 0 #212121, -6px 18px 0 #212121, 0px 18px 0 #212121, 6px 18px 0 #212121, 0 19px 1px rgb(0 0 0 / 10%), 0 0 6px rgb(0 0 0 / 10%), 0 6px 3px rgb(0 0 0 / 30%), 0 12px 6px rgb(0 0 0 / 20%), 0 18px 18px rgb(0 0 0 / 25%), 0 24px 24px rgb(0 0 0 / 20%), 0 36px 36px rgb(0 0 0 / 15%) !important;
    opacity: var(--opacity);
  }

  .carousel-item .title {
    z-index: 1;
    font-size: 30px;
    left: 0;
    align-items: center;
    margin-left: 10%;
    margin-right: 10%;
    transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  }

  .description-box {
    display: none !important;
  }

  .layout {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .layout .box {
    position: absolute;
    bottom: 0;
    left: 12px;
    color: #212121;
    transform-origin: 0% 10%;
    transform: rotate(-90deg);
    font-family: 'Bungee';
    font-size: 8px;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 0.4;
  }

  .layout:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50px;
    width: 10px;
    height: 100%;
    border: 1px solid #212121;
    border-top: none;
    border-bottom: none;
    opacity: 0.15;
  }
}


.social-media-icons {
  position: fixed;
  bottom: 30px;
  /* Adjust the distance from the bottom edge */
  right: 30px;
  /* Adjust the distance from the right edge */
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 100;
  /* Ensure the icons appear above other elements */
}

.social-media-icons a {
  text-decoration: none;
  color: inherit;
}

.social-media-icons i {
  font-size: 32px;
}