.footer {
    color: white;             /* Text color */
    width: 100%;              /* Full width */
    position:absolute;
    bottom:0;                 /* Stick to the left edge */
    z-index: 10; 
  
    /* Flexbox to center content */
    display: flex;
    justify-content: center;  /* Horizontally center the content */
    align-items: center;      /* Vertically center the content */
  }
  
  .footer a {
    text-decoration: none;
    position: absolute;
    text-align: center;       /* Center text horizontally */
  }

  .footer-image {
    width: 100%;
    max-height: 80px;
  }