/* Global Styles */
body, html {
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }
  
  /* Responsive Intro Text */
  .intro-text {
    font-size: 2vw; /* Relative sizing ensures responsiveness */
    color: white;
    text-align: left;
    margin-top: 10vw;
    margin-left: 10vw;
    white-space: pre-wrap;
    user-select: none;
    z-index: 3;
  }
  
  /* Background Image */
  .background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* Overlay Container */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 1;
  }
  
  /* Navbar Styling */
  .navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
    margin: 10px;
  }
  
  .navbutton {
    background-color: white;
    color: rgb(131, 224, 220);
    padding: 10px 20px;
    border: 10px solid white;
    border-radius: 15px;
    font-size: 1rem;
    margin: 10px;
    box-shadow: 0px 0px 10px 10px rgb(131, 224, 220);
    cursor: pointer;
  }
  
  .navbutton:hover {
    opacity: 0.8;
  }
  
  /* Logo and Demo Info */
  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 20%;
    max-width: 300px;
  }
  
  .demobutton {
    background-color: white;
    color: rgb(131, 224, 220);
    border: 1px solid white;
    border-radius: 15px;
    font-size: 1.5rem;
    padding: 10px 15px;
    margin-top: -100px;
    cursor: pointer;
  }
  
  /* Media Queries for Smaller Screens */
  @media (max-width: 768px) {
    .intro-text {
      font-size: 6vw;
      margin-top: 8vw;
      margin-left: 5vw;
    }
    .navbutton {
      padding: 8px 16px;
      font-size: 0.9rem;
      margin: 5px;
    }
    .logo {
      max-width: 200px;
      top: 10px;
      right: 10px;
    }
    .demobutton {
      font-size: 1.2rem;
      padding: 8px 12px;
    }
  }
  
  @media (max-width: 480px) {
    .intro-text {
      font-size: 8vw;
      margin-top: 6vw;
      margin-left: 5vw;
    }
    .navbutton {
      padding: 6px 12px;
      font-size: 0.8rem;
      margin: 4px;
    }
    .logo {
      max-width: 150px;
      top: 5px;
      right: 5px;
    }
    .demobutton {
      font-size: 1rem;
      padding: 6px 10px;
    }
  }
  p {
    color: white;
  }
  h1 {
    color: white;
  }

  .about-text {
    font-size: 1vw;
    color: white;
    text-align: left;
    margin-top: 5vw;
    margin-left: 15vw;
    white-space: pre-wrap;
    user-select: none;
    z-index: 3;
  }
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}


  .logo-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }