.black-space 
{
    height: 80px;
    background-color: black;
}

.frame-space 
{
    height: 80px;
    background-size: contain;
    background-repeat: repeat-x;
}

.video-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
    box-sizing: border-box;
}

.video-title {
    color: white;
    font-size: 2em;
    text-align: right;
    padding-top: 20%;
}

.video-title h1 {
    font-family: var(--font-family-2);
    font-size: 4em;
    margin-bottom: 0.2em;
}

.video-title p {
    margin-top: 0;
}

.mute-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

#mute-button {
    background: none;
    border: none;
    cursor: pointer;
}

#mute-button img {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .video-container {
        height: auto;
    }

    .video-frame {
        height: auto;
        padding-top: 56.25%;
    }

    .video-frame iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .video-title {
        font-size: 1.5em;
        padding-top: 10%;
    }

    .video-title h1 {
        font-size: 1.5em;
    }

    .video-title p {
        font-size: 0.7em;
    }

    .mute-button-container {
        bottom: 10px;
        right: 10px;
    }
}