.yt-banner-container {
    position: relative;
}

.video-content {
    display: table;
    width: 100%;
    height: 500px;
    z-index: 1;
    position: relative;
    background-color: rgba(0, 0, 0, 0.62);
}

.video-content .inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
}

.video-content .inner h1 {
    font-size: 62px;
    color: white;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.video-background-controls button {
    font-size: 32px;
    display: inline-block;
    padding: 0px;
    margin: 0px;
    height: 32px;
    width: 32px;
    border-radius: 16px;
    line-height: 32px;
    border: none;
    background: none;
    -webkit-appearance: none;
    color: white;
    filter: drop-shadow(0px 0px 1px black);
    cursor: pointer;
    opacity: 1;
    transition: all 250ms ease-in-out;
    margin-left: 10px;
}

.video-background-controls button:hover {
    opacity: 0.5;
}

.yt-banner-container iframe {
    transition: opacity 500ms ease-in-out;
    transition-delay: 250ms;
    max-width: inherit;
}

.text-white {
    color: #ffffff;
}