a#scroll-btn {
  position: absolute;
  z-index:  1;
  height: 5em;
  width: 3.25em;
  border: 0.5em transparent; #e83e8c;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 6.25em;
  border-radius: 3em;
}
a#scroll-btn:before {
  position: absolute;
  z-index:  1;
  content: "";
  margin: auto;
  left: 0;
  right: 0;
  top: 0.2em;
  height: 1.2em;
  width: 1.2em;
  background-color: #e83e8c;
  border-radius: 50%;
  animation: move-down 2s infinite;
}
@keyframes move-down {
  80% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(5.3em);
    opacity: 0;
  }
}
a#scroll-btn:after {
  position: absolute;
  z-index:  0;
  /*content: "SCROLL DOWN";*/
  width: 12em;
  display: block;
  width: 12em;
  text-align: center;
  left: -4.2em;
  bottom: -2.5em;
  font-size: 1.6em;
  color: #ffffff;
  letter-spacing: 3px;
  font-weight: 600;
}
@media screen and (max-width: 500px) {
  a#scroll-btn {
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  a#scroll-btn {
    display:  none;;
  }
}