<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">ul.image-list.social-media {
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  padding: 0 0 1rem 0;
  margin: 0 0 0 0;
  list-style: none;
  display: flex;
  gap: 30px;
}

.center ul.image-list.social-media {
  align-content: center;
  justify-content: center;
}

ul.image-list.social-media.vertical {
  flex-direction: column;
}

ul.image-list.social-media .item:nth-child(4) img, ul.image-list.social-media .item:nth-child(4) svg {
  width: 38px;
}

ul.image-list.social-media .image img,
ul.image-list.social-media .image svg {
  height: 30px;
  width: 30px;
}
.bg-color-dark ul.image-list.social-media .image img &gt; path,
.bg-color-dark ul.image-list.social-media .image svg &gt; path {
  fill: white;
  transition: fill 0.2s ease;
}

ul.image-list.social-media .image img:hover &gt; path,
ul.image-list.social-media .image svg:hover &gt; path {
  fill: var(--accent1);
}

@media (max-width: 1000px) {
  ul.image-list.social-media .item:nth-child(4) img, ul.image-list.social-media .item:nth-child(4) svg {
    width: 33px;
  }

  ul.image-list.social-media .image img,
  ul.image-list.social-media .image svg {
    height: 25px;
    width: 25px;
  }
}
</pre></body></html>