.frame {
  height: 100vh;
  overflow-y: auto;
}

.div {
  height: 100%;
}

.overlap-group {
  background-size: 100% 100%;
  height: auto;
  width: 100%;
}

.imgbox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.img1 {
  width: 100%;
}

.imgdownload {
  width: 50%;
  z-index: 2;
  /* margin-top: 1rem; */
  animation: rotate-animation 1.5s infinite;
  /* position: relative;
  top: -1rem; */
}

@keyframes rotate-animation {

  0%,
  100% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.2);
  }
}

.img2 {
  width: 100%;
  margin-top: -3.8rem;
}

.footerbox1 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  padding-right: 10%;
}

.footerbox2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: -4.5rem;
  position: relative;
}

.img4 {
  width: 15%;
  z-index: 2;
  animation: rotate-animation 1.5s infinite;
}

.img5 {
  width: 100%;
}

.img6 {
  width: 15%;
  position: absolute;
  right: 0;
  margin-right: 5%;
  animation: rotate-animation 1.5s infinite;
}

@media screen and (min-width: 480px) {
  .frame {
    display: flex;
    justify-content: center;
  }

  .overlap-group {
    width: 480px;
    height: auto;
  }

  .div {
    width: 480px;
  }

  .img1,
  .img4 {
    width: 480px;
  }

  .img4 {
    width: 50px;
  }

  .img2 {
    width: 100%;
    margin-top: -4.5rem;
  }

  .imgbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 475px) {}