.video-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
    overflow: hidden;
    display: flex;
}

video {
    width: 100%;
    height: auto;
}

.noBlurAll * {
    filter: blur(0) !important;
}

.controls #pauseIcon {
    display: none;
}

.controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

#playPauseButton i {
    -webkit-filter: drop-shadow(0px 0px 4px black);
    filter: drop-shadow(0px 0px 4px black);
}

.video-container:hover .controls {
    display: block;
}

.blur {
    -webkit-filter: blur(4px);
    filter: blur(4px);
}

.none {
    display: none;
}

.block {
    display: block;
}

.youtube #playPauseButton #playIcon {
    background: red;
    border-radius: 20px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}