
  body {
  font-family: 'Verdana', sans-serif;
}

  
  html, body {
    height: 100%;
    margin: 0;
  }
  
  html, body {
    margin: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom, #9E4B2C, #13213E);
  background-attachment: fixed;
  } 
  
  .banner { 
    border: 1px solid #000; 
    border-bottom: none; 
    }

.banner img {
  width: 100%;
  height: auto;
  display: block;
}



.container {
  
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #000;
  border-top: none;
  background: #13213E; /* dark blue background */
  color: #fff;         /* white text */
}

.nav {
  
  display: flex;
  width: 100%;
}

.nav a {
  flex: 1;
  border: 1px solid #000;
  padding: 10px 0;
  text-decoration: none;
  color: orange;      /* white text */
  font-weight: bold;
  text-align: center;
  background: #13213E; /* dark blue background */
}

.nav a + a {
  border-left: none;
}

.content {
  padding: 20px;
  
}

.footer-images {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px auto;
  max-width: 800px;
}

.footer-images img {
  width: 100px;
  height: auto;
  display: block;
}

footer {
  text-align: center;
  font-size: 14px;
  padding: 15px 0;
  border-top: 1px solid #000;
  background: #13213E; /* dark blue background */
  color: #fff;         /* white text */
  margin-top: auto;
}

a {
  color: orange;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}




