  body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Courier New", Courier, monospace;
    background-color: #fff;
    height: 100%;
    width: 100%;
    color: #000;
  }

  .home-icon {
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    display: inline-block;
    margin-right: 10px;
  }

  nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1000;
    background: #000;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 1px 4px rgba(255, 255, 255, 0.2);
  }

  #nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 100px;
  }

  #nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
  }

  @media (max-width: 700px) {
    #nav-links {
      padding-left: 10px;
    }
  }

  #lang-switcher {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 0.9rem;
    color: #fff;
  }

  #lang-switcher a {
    color: #bbb;
    margin: 0 0.2rem;
    text-decoration: none;
  }
  
  #lang-switcher a:hover {
    color: #fff;
  }

  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0 10px;
  }

  .burger div {
    width: 20px;
    height: 2px;
    background-color: white;
  }

  @media (max-width: 600px) {
    #nav-links {
      display: none;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      background: #000;
      position: absolute;
      left: 0;
      width: 100%;
      padding: 20px;
    }

    #nav-links.active {
      display: flex;
    }

    .burger {
      display: flex;
    }
  }
  
  footer {
    background-color: #000;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
  }