#video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

#video-container video,
.video-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

#video-container .video-overlay {
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

#video-container .video-content {
    z-index: 99999;
    position: absolute;
    width: 200px;
    height: 100px;
    top: 15%;
    left: 10%;
}

.logo img{
    width: 50%;
    height: 50%;
}

.menu-wrapper ul {
    border-radius: 0;
}

.menu-wrapper ul li a {
    color: black;
    text-decoration: none;
}

.menu-wrapper ul li:hover{
    font-weight: bold;
    color: white;
    text-decoration: none;
    background-color: #008bd6;
}

.menu-wrapper ul li:hover>a{
    font-weight: bold;
    color: white;
    text-decoration: none;
}
.btn {
    border-radius: 0;
}