﻿.sociallinks ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.sociallinks ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid #f0f0f0;
  border-radius: 50%;
  background-color: #f0f0f0;
  text-align: center;
  transition: 400ms;
}
.sociallinks ul li:hover:first-child a {
  border-color: #FF007A;
}
.sociallinks ul li:hover:nth-child(2) a {
  border-color: #000;
}
.sociallinks ul li:hover:nth-child(3) a {
  border-color: #f00;
}
.sociallinks ul li:hover:nth-child(4) a {
  border-color: #00A3FF;
}
.sociallinks ul li:hover:nth-child(5) a {
  border-color: #00C2FF;
}

@media (max-width: 480px) {
  .sociallinks ul {
    column-gap: 18px;
  }
}
