body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #f2f2f2;
  }
  
  header {
    background: url('assets/images/e0fe1296-afc4-411f-8ea5-b479e95fefea.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 70px 20px 10px 20px; /* før: 40px 20px 10px 20px */
    color: #ffd700;
  }
  
  header h1 {
    font-size: 4em;
    margin: 0 0 10px 0; /* før: margin: 0; */
    text-shadow: 2px 2px 5px #000;
  }
  
  header p {
    font-size: 1.5em;
    margin-top: 10px;
    font-style: italic;
  }
  
  .intro {
    padding: 20px 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .intro h2 {
    font-size: 2em;
    color: #ffcc00;
    text-align: center;
  }
  
  .intro p {
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .intro img {
    width: 100%;
    margin-top: 30px;
    border: 4px solid #ffcc00;
    border-radius: 8px;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    font-size: 0.9em;
    color: #aaa;
  }
  
  footer a {
    color: #ffd700;
    text-decoration: none;
  }
  .pong-button {
    background: #28a3f5;
    color: #000;
    border: none;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    z-index: 30;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .pong-button:hover {
    background: #28a3f5;
  }
  .flappy-button {
    background: #ffcc00;
    color: #000;
    border: none;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    z-index: 30;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .flappy-button:hover {
    background: #e6b800;
  }
  .invaders-button {
    background: #560cb6;
    color: #000;
    border: none;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    z-index: 30;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
  }
  
  .invaders-button:hover {
    background: #560cb6;
  }
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  .icon {
    width: 28px;
    height: 28px;
    filter: invert(1) brightness(1.8);
  }
  
  .contact-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
  }
  
  .contact-link:hover {
    text-decoration: underline;
  }
  .games {
    margin: 60px auto;
    padding: 20px;
    text-align: center;
  }
  
  .game-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .game-button {
    display: inline-block;
    width: 250px;
    padding: 14px 20px;
    background-color: #ffcc00;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-size: 1em;
    text-align: center;
  }
  
  .game-button:hover {
    background-color: #e6b800;
  }
  