.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Changed from space-between */
    padding: 10px 20px;
    background-color: rgba(29, 29, 29, 0.8);
    z-index: 999;
    box-sizing: border-box;
    gap: 200px; /* Add spacing between title and Home link */
}
  
.heading {
    font-size: 24px;
    margin: 8px;
    flex-grow: 0; /* Prevent it from pushing the nav */
}
  
.nav-links {
    display: flex;
    gap: 10px; /* Reduce from 120px */
    margin-right: 0; /* Remove pushing to the right */
    justify-content: flex-start;
}
  
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 120%;
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
}
  
@media (max-aspect-ratio: 10/9) {
  .sticky-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .heading {
    font-size: 20px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-right: 0%;
    gap: 5px;
  }

  .nav-links a {
    font-size: 14px;
  }

  body {
    padding-top: 25px
  }

}

body {
    margin-top: 80px; /* Adjust value to match header height */
    margin-bottom: 60px;
    font-family: 'Comic Sans MS';
}

.layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 30px;
}

.links {
  font-size: 20px;
  color: lime;
}

.links a {
  display: block;
  margin-bottom: 10px;
  color: lime;
  text-decoration: underline;
}

.game {
  flex-shrink: 0;
}

.queso img {
  max-width: 150px;
  height: auto;
}

iframe {
      width: 1000px;
      height: 600px;
      border: none;
      max-width: 95%;
}

.arcade {
    background: rgb(0, 0, 0);
    color:rgb(47, 255, 10);
}

.arcade a {
    color:rgb(41, 255, 8);
}

.arcade a:hover {
    color:rgb(200, 255, 192);
}