body {
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 100%;
  background-size: cover;
  font-family: 'Bungee Hairline', cursive;
  margin: 0;
  overflow: hidden;
  color: #FF6600;
  background-color: #339B33;
  display: -ms-grid;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  cursor: none;
}

.nav-wrapper {
  width: auto;
  height: auto;
  background: #339B33;
  z-index: 3;
}

nav {
  width: auto;
  height: auto;
  text-align: center;
  position: absolute;
  z-index: -1;
  top: 83%;
  left: 50%;
  -webkit-transform: translate(-50%, 10%);
          transform: translate(-50%, 10%);
}

.hover-this {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-this:link {
  cursor: none;
}

.hover-this:active {
  cursor: none;
}

.hover-this:hover {
  cursor: none;
}

span {
  display: inline-block;
  font-family: 'Bungee Hairline', cursive;
  font-weight: 300;
  color: white;
  font-size: 3vw;
  text-transform: uppercase;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}

.cursor {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  padding: .6rem;
  border-radius: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.hover-this:hover ~ .cursor {
  -webkit-transform: translate(-50%, -50%) scale(2.5);
          transform: translate(-50%, -50%) scale(2.5);
}

.hover-this {
  width: 100%;
  padding: 20px 0;
  display: inline-block;
}

body:hover .container {
  -webkit-clip-path: circle(25% at 50% 50%);
          clip-path: circle(25% at 50% 50%);
  mix-blend-mode: normal;
  z-index: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.container, .container2 {
  height: 100dvh;
  position: absolute;
  -webkit-clip-path: circle(100% at 50% 50%);
          clip-path: circle(100% at 50% 50%);
  -webkit-transition: -webkit-clip-path 1s;
  transition: -webkit-clip-path 1s;
  transition: clip-path 1s;
  transition: clip-path 1s, -webkit-clip-path 1s;
  width: 100%;
}

.container .img, .container2 .img {
  background: radial-gradient(#ffffff, #a894ff);
  background-size: cover;
  height: 100dvh;
}

.container .content img, .container2 .content img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 10vw;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

a {
  font-size: 5dvw;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

a:hover {
  font-size: 6dvw;
  color: white;
}


#container3D canvas {
  width: 100vw !important;
  height: 100dvh !important;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  span {
    font-size: 6vw; /* Increase text size for mobile */
  }

  a {
    font-size: 7vw; /* Increase link size for mobile */
  }

  a:hover {
    font-size: 8vw; /* Increase hovered link size */
  }
}