body {
    background-image: url(./media/background.jpg);
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #131a1f;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card  {
    color: rgb rgba(0, 0, 0, 0)255;
    background-color:#222222;
    border-radius: 5px;
}



html, body {
    overflow-y: scroll;
  }


  ::-webkit-scrollbar {
    width: 7px;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #272727; /* Blue thumb */
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: #353535; /* Darker blue when hovered */
  }

  ::-webkit-scrollbar-track {
    background-color: #00000000; /* Light track */
  }

.embed {
    color: #FFD700;

}

/* Navbar Styles */
.navbar {
    background-color: #333;
    background-image: url(./media/navphoto.jpg);
        background-size: cover;
    padding: 20px 0;
    display: flex;
    justify-content: space-between; /* Align buttons to the left and right */
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar li {
    margin: 0 5px;
}

.navbar a {
    text-decoration: none;
    font-size: 16px;
}

.underline {
    text-decoration: underline;
  }

.link {
    color: white;
    background-color: #222222;
    border-radius: 5px;
    border-color: #FFD700;
}

.link:hover {
    color: #FFD700;
    background-color: #131313;
    border-color: #FFD700;
}

.hov {
    color: white;
    background-color: #222222;
    border-radius: 5px;
}

.hov:hover {
    color: #FFD700;
    background-color: #131313;
    border-color: #FFD700;
}

.reserve-btn {
    font-weight: bold;
    color: #222222;
    background-color: #ffd700;
    font-size: 18px;
    border-radius: 5px;
}

.reserve-btn:hover {
    color: #FFD700;
    border-radius: 5px;
    background-color: #222222;
    font-weight: bold;
}


.navbar .reserve-btn {
    position: absolute;
    right: 1%;
}




.navbar ul {
    margin-right: auto;
}


  .label {
    width: 100px;
    height: 20px;
    background-color: transparent;
    margin: 10px auto;
  }
  
  .content {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    }
  

    .fish {
        width: 1020px;
        height: 40px;
    }

    .banner {
        max-width: 65%;
        position: auto;
        height: auto;
    }

    .banner2 {
        max-width: 100%;
        position:auto;
        height: auto;
    }


    .txt {
      font-family: 'Times New Roman', Times, serif;
    }

    .shine {
        position: relative;
        overflow: hidden;
      }
      
      .shine::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 200%;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 30%, transparent 70%, transparent 100%);
        opacity: 0;
        animation: shineAnimation 2s linear infinite; /* Adjust the animation duration as needed */
      }
      
      @keyframes shineAnimation {
        0% {
          opacity: 0;
          left: -100%;
        }
        50% {
          opacity: 1;
        }
        100% {
          opacity: 0;
          left: 100%;
        }
      }



.desktop-only {
    display: block;
  }
  
  @media (max-width: 600px) {
    .desktop-only {
      display: none;
    }
  }

  

.mobile-only {
    display: none;
  }
  
  @media (max-width: 600px) {
    .mobile-only {
      display: block;
    }
  }
  
  /*    <div class="mobile-only">
        This shows ONLY on mobile!
      </div>

      
      <div class="desktop-only">
        This text (or image, or button) shows ONLY on desktop!
      </div> */