.rightSide_icons {
  position: fixed;
  width: 200px;
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 60px;
  right: 0;
  margin-top: -200px;
}
.rightSide_icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.5s;
}
.rightSide_icons li a:hover {
  transform: scale(1.1);
}
.rightSide_icons li a:hover img:nth-child(1) {
  transform: rotate(360deg);
}
.rightSide_icons li a img:nth-child(1) {
  transition: 1s;
}
.rightSide_icons li a img:nth-child(2) {
  position: absolute;
  animation: rightSide_iconRotate 10s infinite linear;
}

@keyframes rightSide_iconRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}/*# sourceMappingURL=icon.css.map */