*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

.container-vid{
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content{
    text-align: center;
}

.content h1{
    font-size: 95px;
    color: #fff;
    margin-bottom: 50px;
}

.content a{
    font-size: 23px;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 15px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.content a:hover{
    background-color: #fff;
    color: #000;
}

.background-clip{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media (min-aspect-ratio:16/9) {
    .background-clip{
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio:16/9) {
    .background-clip{
        width: auto;
        height: 100%;
    }
}

.video-container {
    position: relative;
    overflow: hidden;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container:hover .overlay {
    opacity: 1;
}

.watch-btn, .profile-btn {
    margin: 0 5px;
}

/* video background */

.hamburger {
    font-size: 2rem;
    cursor: pointer;
    display: none;
    position: fixed;
    right: 1rem;
    top: 1rem;
    padding-right: 20px;
    z-index: 1100; /* Ensure it stays on top */
}

.sidebar {
    position: fixed;
    top: 20; /* Corrected value */
    right: -250px;
    width: 250px;
    height: 100%;
    background: #bdbdd2;
    padding: 1rem;
    transition: right 0.3s ease; /* Corrected property */
    z-index: 1000;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin: 1rem 0;
}

.sidebar-links a {
    color: #3A3E98 !important;
    text-decoration: none;
}

.overlay-side {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.sidebar.show {
    right: 0;
}

.overlay-side.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .mobile-off{
        display: none;
    }
    .hamburger {
        display: block;
    }
    .navbar {
        height: 70px;
    }
   
    .navbar-brand {
        display: block;
        position: fixed;
        left: 1rem;
        top: 0;
        padding: 10px;
        height: 60px;
    }
    .navbar-brand img {
        margin-top: 5px !important;
        width: 50px !important;
        height: 50px !important;
    }
    .sidebar {
        text-align: center;
        margin-left: 10px;
    }
    .navbar-nav {
        list-style: none;
        padding: 0;
    }
    .nav-item {
        display: inline-block;
    }
}
