.footer {
  background-color: #ddd;
  padding: 4rem 0;
  margin-top: 7rem;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: -1.5rem;
    right: 0;
    height: 3rem;
    width: 50%;
    background: linear-gradient(
      to right,
      var(--blue),
      var(--blue) 25%,
      var(--yellow) 25.001%,
      var(--yellow) 50%,
      var(--purple) 50.001%,
      var(--purple) 75%,
      var(--green) 75.001%,
      var(--green) 100%
    );
  }
  & .wrapped {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media (max-width: 700px) {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    & ul {
      display: flex;
      gap: 1rem;
    }
    & li {
    }
    & a {
      text-decoration: none;
    }
    & a:hover {
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 0.2em;
    }
  }
}
