.buttonLink {
  color: #798bff;
  text-decoration: none;
  background-color: transparent;
  border: none;
}

.showComponent {
  transition-timing-function: ease;
  transition: 3s;
  transform: translateZ(100%);
  opacity: 1;
  position: absolute;
}

.hiddenComponent {
  transition-timing-function: ease;
  transition: 1s;
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  position: absolute;
}

.anchor:hover {
  cursor: pointer;
}

.border-hover:hover {
  border-color: #6576ff;
}
