.footer__container {
    display: flex;
    align-items: center;
    color: white;
    width: 100%;
    height: 3em;
    margin-top: 5em;
    background-color: var(--colour-blue);
  }

  .footer__links {
    display: flex;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: space-between;
    text-wrap: nowrap;
  }

  .footer__container a {
    color: white;
    text-decoration: none;
  }

  .footer__link {
    padding: 0.25em 0.75em;
    border-radius: var(--border-radius);
    transition: background-color 0.2s ease-in-out;
  }

  .footer__link:hover {
      background-color: rgba(255, 255, 255, 0.08);
  }

  /* Media Queries  /////////////////////////////////////////////////*/

  @media (min-width: 1280px) {
    .footer__links {
        width: 1215px;
      }
  }

  @media (min-width: 1536px) {
    .footer__links {
        width: 1471px;
      }
  }