
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: sans-serif;
  }
  

  #background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 110vh;
    object-fit: cover;
    z-index: -1;
  }
  
 
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  

  .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  

  .image-button {
    width: 200px;
    height: 200px;
    background-image: url('Images/NBALOGO.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 50px;
    transition: transform 0.6s ease;
  }
  
  .image-button:hover {
    transform: scale(1.2);
  }
  

  footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 20px 0;
    font-family: "Impact", sans-serif;
  }

  @media (max-width: 768px) {
    #background-video {
      height: 100vh;
    }
  
    .logo-container {
      width: 80%;
    }
  
    .image-button {
      width: 150px;
      height: 150px;
      margin-bottom: 30px;
    }
  
    footer {
      font-size: 0.9rem;
      padding: 15px 0;
    }
  }