.contacts {
  display: flex;
  flex-direction: column;
  color: var(--color-white);
}

.contacts a {
  width: fit-content;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacts a:hover {
  color: var(--color-ink-700);
}
