* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.scene {
  background: url(./assets/temple.png) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#liane1 {
  position: absolute;
  width: 400px;
  height: auto;
  animation: liane-anim2 5s ease-in-out infinite;
}
#liane2 {
  position: absolute;
  width: 300px;
  height: auto;
  left: 10%;
  animation: liane-anim 5s ease-in-out infinite;
}
#liane3 {
  position: absolute;
  width: 400px;
  height: auto;
  left: 70%;
  animation: liane-anim 7s ease-in-out infinite;
}

@keyframes liane-anim {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes liane-anim2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
  }
}

@media screen and (max-width: 768px) {
  #liane1,
  #liane2,
  #liane3 {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  #liane1,
  #liane2,
  #liane3 {
    display: none;
  }
}
