
/* Footer */
footer {
  display: flex;
flex-direction: column;
align-items: center;
background-color: black;
padding: 32px;

gap: 16px;

}

footer a{
  max-width:205px;
}

@media(min-width:1000px){
  footer{
    flex-direction: row;
    justify-content: space-around;
  }
}