
footer {

  padding-block: 2rem;
  width: auto;
  background-color: var(--clr-pri-400);
}

#sitemap {

  display: flex;
  justify-content: center;
  gap: 0 6rem;
  padding-block: 1rem;
}

#sitemap div {

  text-align: center;
  text-decoration: underline;
  color: var(--clr-sec-300);

}

#footer_social {
  display: flex;
  justify-content: center;
  gap: 0 1rem;
}

#footer_social::before {

  content:"";
  position: relative;
  width: 30%;
  height: 2px;
  top:10px;
  background-image: linear-gradient(to left, rgba(255 255 255 / 1), rgba(0 0 0 / 0)); 
}

#footer_social::after {

  content:"";
  position: relative;
  width: 30%;
  height: 2px;
  top:10px;
  background-image: linear-gradient(to right, rgba(255 255 255 / 1), rgba(0 0 0 / 0)); 
}



#footer_social a {
  color: white;
  width: 40px;
  font-size: 20px;
  text-align: center;
}

#footer_logo > img {
  display: block;
  margin-inline: auto;
  padding-block: 1rem;
}

@media only screen and (max-width: 42em) {
  #sitemap {
    gap: 0 3rem;
  }

  #sitemap div {

    font-size: .5rem;
  }
}
