#footer {
  text-align: center;
  background-color: #eff5f9;
  padding: 10px;
  color: gray;
}
#footer ul {
  text-decoration: none;
  padding: 0;
}
#footer ul li {
  list-style-type: none;
  display: inline;
}
#footer ul a {
  color: #66727f;
  font-size: 30px;
  font-family: "Bad Script", cursive;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  margin: 5px;
}
#footer ul a:hover {
  animation: link-animation-hover 1s ease 0s 1 alternate forwards;
}
#footer ul a:active {
  animation: link-animation-active 0.5s ease 0s 1 alternate forwards;
}

@keyframes link-animation-hover {
  from {
    color: #66727f;
  }
  to {
    color: #0952ef;
  }
}
@keyframes link-animation-active {
  from {
    color: #0952ef;
  }
  to {
    color: #0b43bc;
  }
}/*# sourceMappingURL=footer.css.map */