.social-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  gap: 0.5rem;
  padding: 0;
  width: 100%;
}
.social-buttons a {
  color: #fff;
  background-color: hsl(233, 11%, 71%);
  border-radius: 50rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease-in-out;
}
.social-buttons a:hover {
  text-decoration: none;
}
.social-buttons a .icon {
  height: 18px;
  width: 18px;
}
.social-buttons a .text {
  padding: 0 0.25rem 0 0;
}
.social-buttons a:active {
  box-shadow: inset 1px 3px 15px 0 rgba(22, 0, 0, 0.25);
}
.social-buttons a.facebook {
  background-color: #1A77F2;
}
.social-buttons a.facebook:hover {
  background-color: #10478f;
}
.social-buttons a.twitter {
  background-color: #000211;
}
.social-buttons a.twitter:hover {
  background-color: #333333;
}