section {
  padding: 150px 0;
}

.social-medias {
  display: flex;
  grid-gap: 1em;
  justify-content: start;
}

.social-medias a {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid transparent;
  transition: 0.3s ease;
}
.social-medias a:nth-child(1) {
  background-color: #3b5998;
}
.social-medias a:nth-child(2) {
  background-color: #d62976;
}
.social-medias a:nth-child(3) {
  background-color: #25d366;
}
.social-medias a:nth-child(4) {
  background-color: #0e76a8;
}
.social-medias a:nth-child(1):hover {
  border-color: #3b5998;
  color: #3b5998;
  background-color: transparent;
}
.social-medias a:nth-child(2):hover {
  border-color: #d62976;
  color: #d62976;
  background-color: transparent;
}
.social-medias a:nth-child(3):hover {
  border-color: #25d366;
  color: #25d366;
  background-color: transparent;
}

.social-medias a:nth-child(4):hover {
  border-color: #0e76a8;
  color: #0e76a8;
  background-color: transparent;
}

footer small {
  color: white;
}
footer a {
  color: white;
}
