/* Make sure the page takes up the full viewport */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }

  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(255,255,255,0.1));
    z-index: 0;
    pointer-events: none;
  }  
  
  /* Video background styling */
  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the entire area */
    z-index: -1; /* Puts video behind other elements */
    opacity: 0.6;
    filter: grayscale(1); /* full black & white */
  }

  
  /* Content overlay */
  .content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .content h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
  }
  
  .content p {
    font-size: 1.2em;
  }