

  footer {
    background-color: #101010;
    color: #e0e0e0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    margin-top: 110px;
  }
footer ul{
    list-style: none;
    border-bottom: 1px solid rgb(246, 246, 246);
    padding: 5px;
}
footer li{
  padding: 5px;
}
  .footer-left,
  .footer-right {
    display: flex;
    align-items: center;
  }

  .footer-left strong {
    margin-right: 0.5rem;
  }

  @media (max-width: 600px) {
    footer {
      flex-direction: column;
      text-align: center;
    }

    .footer-left,
    .footer-right {
      margin: 0.3rem 0;
    }
  }