
/*
.cursor {
    width: 40px;
    height: 40px;
    border: 3px solid white;
    border-radius: 50%;
    position: absolute;
    box-shadow: 2px -3px 41px -1px rgba(250, 250, 250, 0.64);
    pointer-events: none;
    z-index: 3;
}
*/
.side-menu {
  width: 200px;
  height: 100vh;
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-menu #menuBtn {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 99;
  height: auto;
}
.side-menu #menuBtn input {
  display: block;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 9;
  top: 10px;
}
.side-menu #menuBtn input:checked ~ span:nth-child(2) {
  transform-style: preserve-3d;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotateX(0deg);
  }
  50% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateZ(180deg);
  }
}
.side-menu #menuBtn input:checked ~ span:nth-child(3) {
  width: 21px;
  height: 1px;
  transform: rotate(90deg);
}
.side-menu #menuBtn span {
  position: relative;
  display: block;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.2s linear;
}
.side-menu #menuBtn span:nth-child(2) {
  transform-style: preserve-3d;
  width: 35px;
  height: 35px;
  border: 1px solid white;
  border-radius: 100%;
}
.side-menu #menuBtn span:nth-child(3) {
  width: 3px;
  height: 3px;
  background: white;
  margin-top: -23px;
}
.side-menu .menu {
  text-align: right;
  display: none;
}
.side-menu .menu a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 25px 0;
  font-size: 23px;
}
.side-menu .straight-line {
  margin: 35px 0;
  height: 2px;
  border: 0;
  background: linear-gradient(to right, #000000 0%, #dffff4 40%, #c1ffea 60%, #000000 100%);
  width: 0vh;
  left: 5%;
  position: relative;
  transform: translateX(-50%) rotate(90deg);
  position: absolute;
}

.mainText {
    width: 590px;
    margin-left: auto;
    margin-bottom: 0px;
    padding-top: 20px;
    padding-right: 65px;
    backdrop-filter: blur(4px);
    background-color: rgb(255 255 255 / 7%);
    padding-left: 25px;
    padding-bottom: 20px;
    clip-path: polygon(0% 40px, 40px 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 100%);
}

.body-en .mainText {
    width: 560px;
    margin-left: auto;
    margin-bottom: 0px;
    padding-top: 20px;
    padding-left: 65px;
    backdrop-filter: blur(4px);
    background-color: rgb(255 255 255 / 7%);
    padding-right: 25px;
    padding-bottom: 20px;
    clip-path: polygon(0% 0px, 0px 0, calc(100% - 40px) 0px, 100% 40px, 100% 100%, 100% 100%, 0 100%, 0% 100%);
}

.hover.cursor {
  transform: scale(1.8);
  mix-blend-mode: difference;
  background: white;
}
.mainText .subTitle {
  text-transform: uppercase;
  color: #fff;
  font-size: 20px;
  position: relative;
}

.planetImg {
  transform: scale(0.7) rotate(158deg);
  position: absolute;
  top: -5%;
  right: 13%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) translatex(5px) scale(0.7) rotate(156deg);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px) translatex(-5px) scale(0.7) rotate(162deg);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) translatex(5px) scale(0.7) rotate(156deg);
  }
}
.explosion {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  transition-duration: 10ms;
  transition-timing-function: ease-out;
  animation: meniItemClick 0.3s;
}

@keyframes meniItemClick {
  0% {
    transform: scale(0.3);
    box-shadow: 0 0 0px 0px #9ab3f5;
  }
  70% {
    transform: scale(1);
    opacity: 0.7;
    box-shadow: 0 0 10px 8px #9ab3f5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
    box-shadow: 0 0 0px 0px #9ab3f5;
  }
}
#WebGL-output {
    width: 100%;
    position: absolute;
    height: 100vh;
    z-index: 1;
}

.dg {
  display: none;
}