    .top-navigation {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #8F6F56;
      backdrop-filter: blur(10px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 2rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      flex-direction: column;
    }

    .top-navigation ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 1rem;
      color: white;
    }

    .top-navigation li {
      display: inline;
    }

    .top-navigation li a {
      display: inline-block;
       padding: 0.5rem 1rem;
       border-radius: 6px;
       text-decoration: none;
       color: white;
       font-weight: 500;
       transition: background-color 0.3s ease, color 0.3s ease;
    }

    .top-navigation li a:hover {
      background-color: #A16B4C;
      color: white;
    }

    h1 {
      color: black;
      text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
      font-size: 2.5rem;
      margin: 0;
    }

.banner{
    align-items: center;
    justify-content: center;
    padding:40px;
    display: flex;
    background-image:
    url("../images/ff_14_world_map.jpg");
    background-position:right center;
    background-size:cover;
}