.footer-links {
    position: relat;
    bottom: 0;
    left: 0;
    width: 110%;
    text-align: center;
    /* margin-top: 10px;  */
    margin-bottom: 1vh;
    background-color: #d7e7f4ff; /* Optional: Add a background color */
    padding: 5px 0; 
}
  /* This CSS targets screens with a viewport width larger than the height, indicating landscape mode */
  @media screen and (orientation: landscape) {
    #banner {
      content: url('../img/horizontal_logo.png'); /* replace with your landscape image path */
    
    }
  }

  /* This CSS targets screens with a viewport height larger than the width, indicating portrait mode */
  @media screen and (orientation: portrait) {
    #banner {
      content: url('../img/newlogo_2.png'); /* replace with your portrait image path */
    }
  }


.footer-links a {
    margin: 0 10px; 
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-style: bold;
}
