
.bluesky-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 64px;
  border-radius: 50%;
  /*ackground: linear-gradient(135deg, #5c9ded, #0078ff);*/
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bluesky-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.bluesky-img {
  width: 55px;
  height: 48px;
  object-fit: cover;
  border-radius: 10%;
  transition: transform 0.2s ease;
}

.bluesky-icon:hover .bluesky-img {
  transform: rotate(15deg);
}

