footer {
  --footerTextSize: 1rem;
  --iconSize: 2rem;
  --iconPadding: 2px;
  --fullIconSize: calc(var(--iconSize) + var(--iconPadding) * 4); 
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: var(--generalBackgroundColor);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, .8) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  min-width: var(--minWebsiteSize);
  grid-row: 3;
}

.footerItem {
  flex: 1;
  display: flex;
  justify-content: center;
}

#footerLinksContainer {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.footerText {
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--footerTextSize);
  color: #838383;
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  box-sizing: border-box;
  padding: calc(var(--fullIconSize) / 2) 40px;
  transform: translateY(10px);
}

#footerLinks {
  font-size: var(--iconSize);
  display: flex;
  gap: calc(var(--iconSize)/4);
  padding: 0 20px;
  transform: translateY(5px);
}

#footerLinks li {
  display: flex;
  justify-content: center;
  align-items: center;
}

#footerLinks li a {
  text-decoration: none;
  color: #838383;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--fullIconSize);
  height: var(--fullIconSize);
  box-sizing: border-box;
}

#footerLinks li a i {
  display: flex;
  justify-content: center;
  align-items: center;
}

#footerLinks li a:focus-visible {
  outline: var(--focusStyle);
}

.brandIcon {
  min-height: 25px;
  height: var(--iconSize);
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  align-self: center;
}

#spotifyIconContainer {
  background-color: #000;
  height: calc(var(--iconSize) - 5px);
  width: calc(var(--iconSize) - 5px);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  flex-shrink: 0;
}

#tikTokIcon {
  transform: scale(1.2);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

#soundCloudIcon {
  background-color: #fff;
  width: var(--iconSize);
  height: auto !important;
  padding: 2px;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

  @media (max-width: 950px) {
    footer {
      flex-direction: column;
      gap: 10px;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 90%,
        rgba(0, 0, 0, 0) 100%
      );
    }

    #footerLinks {
      order: 0;
      justify-content: center;
      padding: 0px;
    }

    .footerItem {
      order: 1;
      display: block;
    }

    .footerText {
      text-align: center;
      padding: 10px 40px 5px 40px;
      transform: translateY(0px);
    }

    #allRightsReserved {
      margin: 10px 0 0 0;
      display: block;
    }
  }

    @media (max-width: 600px) {
      #footerLinks {
        order: 0;
        justify-content: center;
        padding: 0px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
      }
  

    .footerItem {
      order: 1;
    }
  }

  @media (max-width: 350px) {
    footer {
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 95%,
        rgba(0, 0, 0, 0) 100%
      );
    }
    
    #footerLinks {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  }


