  /* overlay for content to be loaded */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black; /* Semi-transparent black background */
  z-index: 9999; /* Place the overlay above other content */
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto; /* Enable pointer events to block interactions */
}

  .landing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../test.gif') center center fixed;
  
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  #newOverlayButton {
    position: absolute;
    z-index: 2;
    text-align: center;
    align-self: center;
    top: 10%;
    left: 55%;
    transform: translate(-50%, -50%);
    display: block;
    margin: 0 auto;
    cursor: pointer;
    width: 20%;
    height: 20%;
    background: url('../Group1.png') center/cover;
    background-attachment: fixed;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    padding: 0;
    border-radius: 50%;
    filter: drop-shadow(0 10px 20px rgba(255, 0, 0, 0.5));
    animation: bounce 2s infinite, shadow-pulse 2s infinite alternate;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    line-height: 40;   /* Adjust the line height to vertically center the text */
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  
  #overlayButton {
    z-index: 2;
    text-align: center;
    align-self: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    margin: 0 auto;
    cursor: pointer;
    width: 20%;
    height: 20%;
    background: url('../Group1.png') center/cover;
    background-attachment: fixed;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    padding: 0;
    border-radius: 50%;
    filter: drop-shadow(0 10px 20px rgba(255, 0, 0, 0.5));
    animation: bounce 2s infinite, shadow-pulse 2s infinite alternate;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
    line-height: 40;   /* Adjust the line height to vertically center the text */
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
   
  
  @media screen and (max-width : 767px) {
    #overlayButton {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    #newOverlayButton {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    } 
    
  
    #landing {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
  
  /* Add a bounce animation */
  @keyframes bounce {
  
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
  
    40% {
      transform: translateY(-20px);
    }
  
    60% {
      transform: translateY(-10px);
    }
  }
  
  /* Add a shadow pulse animation */
  @keyframes shadow-pulse {
    0% {
      filter: drop-shadow(0 10px 20px rgba(255, 0, 0, 1));
    }
  
    100% {
      filter: drop-shadow(0 20px 40px rgba(255, 0, 0, 1));
    }
  
  }
  
  /* Add a bounce animation */
  @keyframes bounce {
  
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
  
    40% {
      transform: translateY(-20px);
    }
  
    60% {
      transform: translateY(-10px);
    }
  }
  
  /* Add a shadow pulse animation */
  
  
  
  /* Add a shadow pulse animation */
  @keyframes shadow-pulse {
    0% {
      filter: drop-shadow(0 10px 20px rgba(255, 0, 0, 0.5));
    }
  
    100% {
      filter: drop-shadow(0 20px 40px rgba(255, 0, 0, 0.8));
    }
  }  
  #membersButton {
    /* Position the <p> element at the top right corner */
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    border-radius: 3.75rem;
    line-height: 2.5rem;
    font-size: 2rem;
    font-weight: 600;
  
    border: 1px solid #ffffff;
    background-image: linear-gradient(-180deg, #f7fa33 0%, #13030f 100%);
    box-shadow: 0 1rem 1.25rem 0 rgba(233, 236, 9, 0.5),
      0 -0.25rem 1.5rem rgb(56, 55, 56) inset,
      0 0.75rem 0.5rem rgba(255, 255, 255, 0.4) inset,
      0 0.25rem 0.5rem 0 rgb(176, 140, 185) inset;
    /* Other styling for the <p> element */
    z-index: 3;
    color: #080000;
  }