body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1d1d1d;
    color: #fff;
    text-align: center;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 100px;
    height: 70px;
  }
  
  .logo span {
    font-size: 24px;
    font-weight: bold;
    margin-left: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
  }

#download-section {
    position: relative;
    z-index: 2;
    margin-top: 150px; /* Adjusted to move below the header */
}

.download-btn {
    display: inline-block;
    background-color: #6c46a1;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
}

.download-btn:hover {
    background-color: #5b3b8d;
}

footer {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 10px 0;
    color: #fff;
    z-index: 2;
}

/* Fullscreen video styling */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Ensures the video covers the entire area */
    z-index: -1;
    opacity: 0.6; /* Adjust the opacity as needed */
}
