#background-video {
    width: 100%;
    height: 100%;
}

.video
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Take up full viewport height */
    overflow: hidden; /* Hide any overflowing content */
    /*pointer-events: none;*/
}

.img-arrow
{
    position: absolute;
    bottom: 0%;
    left: 50%;;
    margin-left: -2.5%;
    width: 10%;
    height: 10%;
    background: url("images/arrow_down.png") no-repeat;
    background-size: contain;
    opacity: 0;
    animation-name: fade-in;
    animation-duration: 1s;
    animation-delay: 5s;
    animation-fill-mode: forwards;
}

.video-container {
    position: relative;
}

#mute-toggle {
    z-index: 98;
    position: absolute;
    font-size: xx-large;
    bottom: 50px;
    right: 50px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}