body {
    background-color: #000000;
}

.video-bg {
    position: absolute; /* makes it a background layer */
    top: 0;
    left: 0; /* align to the left */
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes video cover the area */
    z-index: -1; /* keep it behind other content */
    transform: scale(1);
}

#nav-somewhere {
    width: 100%;
    position: fixed;
    bottom: 5vh;
    text-align: center;
    margin: auto;
    font-size: large;
}