/* From Uiverse.io by faxriddin20 */
.card {
  width: fit-content;
  height: fit-content;
  background-color: transparent;
  display: flex;
  border-radius: 250px;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  gap: 16px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}

.socialContainer {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--primary-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition-duration: 0.25s;
  text-decoration: none;
}

.containerOne:hover {
  background-color: #229ed9; /* Telegram */
}

.containerTwo:hover {
  background-color: #24292e; /* GitHub */
}

.containerThree:hover {
  background-color: #0072b1; /* LinkedIn */
}

.containerFour:hover {
  background-color: #d44638; /* Gmail */
}

.socialContainer:active {
  transform: scale(0.9);
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: white;
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
