@charset "UTF-8";
.scroll {
  position: absolute;
  bottom: 11rem;
  text-align: center;
}
.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 1.5px solid #000;
  border-left: 1.5px solid #000;
  content: "";
  height: 1.8rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 1.8rem;
}
.scroll::after {
 animation: scroll 2s infinite;
 border-bottom: 1.5px solid #000;
 border-left: 1.5px solid #000;
 content: "";
 height: 2rem;
 left: 0;
 margin: auto;
 padding: 0,15,0,15px;
 position: absolute;
 right: 0;
 top: 11px;
 width: 2rem;
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}