body {
    background-color: black;
    color: #fff;
  }
  
  /* Style the header */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    padding: 0 2rem;
    background: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.6s ease, opacity 0.4s ease; /* Add opacity and make top transition slightly slower */
  }  
  
  /* Container */
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Navigation */
  .site-navigation {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
  }
  
  .site-navigation ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: space-evenly;
  }
  
  .site-navigation li {
    margin: 0;
    padding: 0;
  }
  
  .site-navigation a {
    font-family: 'TitlingGothicFBNo', sans-serif;
    font-weight: 400;
    font-size: 38px;
    color: #D1FD38;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
    white-space: nowrap;
  }
  
  .site-navigation a:hover {
    color: #EC42AC;
  }
  
  /* Hide site logo */
  .site-logo {
    display: none;
  }
  
  /* Media Queries */
  @media (max-width: 1200px) {
    .container {
      padding: 0 10px;
    }
  }
  
  @media (max-width: 768px) {
    .site-header {
      padding: 10px 0;
      height: auto;
    }
  
    .site-navigation ul {
      flex-direction: column;
      gap: 10px;
    }
  
    .site-navigation li a {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .site-navigation ul {
      width: 100%;
    }
  }
  