#fullPageNav {
    height: 100%;
    width: 100%;
    background-color: #1a1a1a;
    color: #808080;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  #menu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2vh 5vw;
    box-sizing: border-box;
    overflow-y: auto;
  }
  
  .menu-item {
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 15vh;
    line-height: 1.2;
    font-weight: bold;
    text-align: right;
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 2vh;
  }
  
  .menu-item:hover {
    color: #ff0000;
    transform: translateX(-50px);
  }
  
  .item-number {
    font-size: 3vh;
    vertical-align: top;
    margin-left: 15px;
  }
  
  #custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 24px;
    pointer-events: none;
    z-index: 9999;
  }
  
  #close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 36px; /* Increased from 24px to make it bigger */
    color: #808080;
    z-index: 1000;
  }
  
  #close-button:hover {
    color: #ff0000;
  }

  @media only screen and (max-width: 750px) {
    .menu-item {
        font-size: 15vw;
    }
}