.button-anchor:hover {
  animation: animation 7s linear infinite;
  border: none;
	font-size: 3vw;
}
.button-anchor:before {
  content: '';
  position: absolute;
  top: -0.32vw;
  left: -0.32vw;
  right: -0.32vw;
  bottom: -0.32vw;
  z-index: -1;
  background: var(--menu-button-background);
  background-size: 400%;
  border-radius: 2.2vw;
  transition: 1s;
}
.button-anchor:hover::before {
  filter: blur(1.3vw);
}

.button-anchor:active {
  background: var(--menu-button-background);
}
#card-home:hover, .card:hover{
	transform: scale(1.03);
}