{
    margin: 0;
    padding: 0;
}

body {
    max-width: 100%;
    margin: 0 auto;
}

.wrap {
    position: relative;
}

.wrap>img {
    display: block;
    width: 100%;
}

.download>img {
    width: 97%;
    position: absolute;
    margin: 0 auto;
    animation: moves 1.8s infinite;
    left: 0;
    right: 0;
    top: 12.3rem;
}

.DownloadBtn>img {
    width: 60%;
    position: relative;
    margin: 0 auto;
    animation: moves 1.8s infinite;
    left: 0;
    right: 0;
}


.container {
    position: relative;
    max-width: 7.5rem;
    min-width: 3.2rem;
    margin: 0 auto;
    background-color: #ffffff
}

#copy-text {
    width: 1px;
    height: 1px;
    border: 0;
    color: transparent;
    position: absolute;
    top: 0;
    z-index: -100;
}

@media only screen and (device-width:375px) and (device-height:812px) and (-webkit-device-pixel-ratio:3) {
    .link {
        top: 75%;
        height: 7%
    }
}

@keyframes moves {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(0.96);
    }
    100% {
      transform: scale(1);
    }
  }
