.video{
    position: relative;
    object-fit: cover;
    z-index: -1;
    width: 100%;
    height: 100%;
}


/* Sidebar hidden by default */
.sidebar {
    width: 220px;
    height: 100vh;
    background: rgba(58, 134, 255, 0.95);
    position: fixed;
    top: 0;
    left: -220px;   /* hidden */
    transition: 0.3s ease;
    padding-top: 60px;
}

/* Sidebar visible */
.sidebar.open {
    left: 0;
}

/* Menu button */
.menu-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 28px;
    background: #ffbe0b;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1000;
}

/* Nav items */
.nav-items {
    list-style: none;
    padding: 20px;
}

/* Nav links */
.nav-link {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
    background: rgba(255,255,255,0.2);
}
.h1{
    text-align: center;
    float: right;
    text-transform: uppercase;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(82, 29, 242);
    position: absolute;
}