@charset "UTF-8";
/* CSS Document */

header .scroll {
  position: absolute;
  bottom: 15%;
  left: 49.5%;
  width: 50%;
  height: 1em;
  cursor: pointer;
  text-decoration: none;
  color: #000;
  margin: 0 auto;
}

header .arrow {
  position: absolute;
  top: 1.25em;
  left: 1em;
  animation: 3s arrow-animation infinite ease-in-out;
  animation-iteration-count:1;
  width: 0;
  height: 6em;
  border: 0.5px solid #000;
}
header .arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: -2px;
  width: 1px;
  height: 10px;
  border-top: 10px solid #000;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}

@keyframes arrow-animation {
  0% {
    height: 1em;
  }
  50% {
    height: 7em;
  }
}