    @font-face {
  font-family: 'Kanisah';
  src: url('./Kanisah-oODV.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
    
    
    
    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow: hidden;
      background: black;
            background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
        font-family: 'Kanisah', sans-serif;
        z-index: -1;
    }

    .content {
      position: relative;
      z-index: 1;
      color: white;
      text-align: center;
    }
#lottie-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#lottie-bg svg {
  width: 100vw;
  height: 100vh;
  object-fit: cover; 
}

#viewer-container {
  width: 100vw;
  height: 100vh;
}
canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.top-nav{
  width: auto;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  top: 0;
  right: 0;
  left: 0;
  margin-left: 4%;
  margin-right: 4%;
  margin-top: 2%;
  align-items: center;
  z-index: 3;
}
.my-footer{
  width: auto;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  bottom: 0;
  right: 0;
  left: 0;
  margin-left: 4%;
  margin-right: 4%;
  align-items: center;
  z-index: 3;

}
.buttons a{
    text-decoration: none;
}
.buttons a{
  display: inline-block;
    text-decoration: none;
    width: 70px;
}
.buttons{
  display: flex;
  gap: 0;
  flex-direction: row;
}
.buttons-img{
    width: 70px;
    height: auto;
}
@media screen and (max-width: 768px) {
  .buttons-img{
    width: 40px;
    height: auto;
}
.buttons a{
  display: inline-block;
    text-decoration: none;
    width: 40px;
}
}

#flying-container {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 4;
}

.flying-img {
  position: absolute;
  width: 40px;
  height: auto;
  pointer-events: none;
  animation: fly 5s linear infinite;
    pointer-events: auto; 
  cursor: pointer;
}

@keyframes fly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(0.8);
    opacity: 0;
  }
}

#popup-center-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}

.popup-click-img {
  position: absolute;
  width: 100px;
  height: auto;
  animation: fadeInOut 1.2s ease-out forwards;
  pointer-events: none;
}

@keyframes fadeInOut {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: scale(1.1);
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}