main {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
}
.linktree-background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  z-index: -1;
  background: #61002a url(/wp-content/themes/dstheme/assets/images/new-map.svg) no-repeat 25% center;
  background-size: auto 125%;
}

section {
  margin-bottom: 32px !important;
}

#links-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

#links-logo img {
  height: 80px;
}

.linktree {
  display: flex;
  flex-wrap: wrap;
}

.linktree .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.linktree .linktree-link {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.linktree .linktree-link a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  background: rgba(97, 0, 42, 0);
  color: #61002a;
  text-decoration: none;
  font-family: SoleilSb;
  letter-spacing: 0.025em;
}

.linktree .linktree-link a:hover {
  background: rgba(97, 0, 42, 0.15);
  color: #61002a;
  text-decoration: none;
}

.linktree .linktree-link-img {
  display: flex;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.linktree .linktree-link-img img {
  object-fit: cover;
}
.linktree .linktree-link-text {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 10px;
}

#links-socials {
  display: flex;
  justify-content: center;
}

.social-link {
  margin: 8px;
}

.social-link img {
  width: 32px;
  height: 32px;
  filter: invert(1) saturate(0) opacity(0.6);
  color: #fff;
  transition: all 0.3s ease;
}

.social-link img:hover {
  filter: invert(1) saturate(0) opacity(1);
}

@media screen and (min-width: 576px) {
  .linktree .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .linktree-background {
    background-position: center;
    background-size: auto;
  }

  .linktree .container {
    grid-template-columns: repeat(4, 1fr);
  }
}
