body {
     background: url('intel.webp');
     margin: 0;
     padding: 0;
     font-family: "Roboto", sans-serif;
     text-align: center;
     -webkit-font-smoothing: antialiased; /* Smoother fonts on WebKit browsers */
     -moz-osx-font-smoothing: grayscale; /* Improves clarity on macOS Firefox */
     text-rendering: optimizeLegibility; /* Enhances kerning and ligatures */
     font-feature-settings: "liga" 1, "kern" 1; /* Enables advanced typography features */
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.95);
  z-index: 1;
  overflow: hidden;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

nav li {
  display: inline-block;
  margin: 0 15px;
}

nav a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 0;
}

nav a img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}

 .game-logos img {
     width: 200px;
     height: 100px;
     object-fit: contain;
     vertical-align: middle;
     margin: 0 10px;
}

.image-button img {
    width: 32px;
    height: 32px;
}

 .invert {
     filter: invert(100%);
}

button {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

@media (max-width: 600px) {
  nav li {
    float: none;
    margin: 5px 0;
    text-align: center;
  }

  nav a {
    font-size: 16px;
    padding: 8px;
  }

  nav a img {
    float: none;
    display: block;
    margin: 0 auto 6px auto;
  }

  .game-logos img {
    width: 100px;
    height: auto;
    margin: 10px auto;
    display: block;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  nav li {
    float: left;
    margin-right: 20px;
  }

  nav a {
    font-size: 17px;
    padding: 10px;
  }

  .game-logos img {
    width: 150px;
    height: 80px;
    margin: 10px 5px;
  }
}
