.social-stickers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  margin-top: 22px;
}

.social-stickers a {
  display: grid;
  width: 53px;
  height: 53px;
  place-items: center;
  transition: transform .16s ease;
}

.social-stickers a:hover {
  transform: rotate(-4deg) translateY(-3px);
}

.social-stickers a:nth-child(2):hover {
  transform: rotate(4deg) translateY(-3px);
}

.social-stickers a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.social-stickers img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
