header, footer {
  background: black;
  height: 75px;
}

.my {
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.my-animation {
  animation-name: anime;
  animation-duration: 0.4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes anime {
  0% {
    color: aquamarine;
    transform: translate(0, 0);
  }
  100% {
    color: red;
    transform: translate(0, 10px);
  }
}

/*# sourceMappingURL=style.css.map */
