body {
  background: url("../img/bg.webp"), linear-gradient(#dcfffb, #aaffea);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
  width: 100%;
}
.view-desktop {
  display: block;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.view-mobile {
  display: none;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.clouds1 {
  width: 60%;
  position: absolute;
  left: 0;
}

.clouds2 {
  width: 60%;
  position: absolute;
  right: 0;
}

.swingImg1 {
  position: absolute;
  top: -1;
  left: 6%;
  animation: swing ease-in-out 1.8s infinite alternate;
  transform-origin: center -20px;
  width: 40%;
  z-index: 1;
}

@keyframes swing {
  0% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}

.swingImg2 {
  position: absolute;
  top: -1;
  left: 17%;
  animation: swing2 ease-in-out 2.5s infinite alternate;
  transform-origin: center -20px;
  width: 32%;
  z-index: 1;
}

@keyframes swing2 {
  0% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}

.swingImg3 {
  position: absolute;
  top: -1;
  left: 47%;
  animation: swing3 ease-in-out 1.5s infinite alternate;
  transform-origin: center -20px;
  width: 32%;
  z-index: 1;
}

@keyframes swing3 {
  0% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}

.swingImg4 {
  position: absolute;
  top: -1;
  left: 51%;
  animation: swing4 ease-in-out 2.5s infinite alternate;
  transform-origin: center -20px;
  width: 40%;
  z-index: 1;
}

@keyframes swing4 {
  0% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(4deg);
  }
}

.cny-container {
  position: relative;
  top: 50px;
  padding-bottom: 1rem;
}
.cny-snake-mobile {
  place-self: center;
  width: 80%;
  margin: auto;
  display: block;
}
.cny-snake {
  place-self: center;
  width: 72%;
  display: none;
  margin: auto;
}
.top-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content {
  display: flex;
  flex-direction: column;
  border-radius: 0 0 15px 15px;
  margin: auto;
  width: 100%;
}
.title {
  font-weight: 800;
  font-size: 1.5rem;
  color: #00312b;
  text-align: center;
  margin: 0.3em 0;
}
@media screen and (min-width: 1024px) {
  .clouds1 {
    width: 50%;
    position: absolute;
    left: 0;
  }
  .clouds2 {
    width: 50%;
    position: absolute;
    right: 0;
  }
  .cny-snake-mobile {
    display: none;
  }
  .cny-snake {
    display: block;
  }
  .swingImg1 {
    left: 23%;
    width: 27%;
  }
  .swingImg2 {
    left: 30%;
    width: 22%;
  }
  .swingImg3 {
    left: 47%;
    width: 22%;
  }
  .swingImg4 {
    left: 49%;
    width: 27%;
  }
  .top-content {
    flex-direction: row;
  }
  .content {
    flex-direction: row;
    border-radius: 0 0 15px 15px;
  }
}

@media (max-width: 1023px) {
  .cny-container {
    padding-bottom: 0;
  }
  .cny-snake-mobile {
    width: 100%;
  }
  .swingImg1 {
    left: 17%;
    width: 35%;
  }
  .swingImg2 {
    left: 28%;
    width: 30%;
  }
  .swingImg3 {
    left: 43%;
    width: 30%;
  }
  .swingImg4 {
    left: 48%;
    width: 35%;
  }
  .cny-snake-mobile {
    width: 65%;
  }
  .content {
    flex-direction: column;
    width: 100%;
  }
}

@media screen and (min-width:320px) and (max-width:1001px) and (orientation: landscape) {
    .view-mobile {
      display: block !important;
    }
    .view-desktop {
      display: none !important;
    }
}