.video-facade {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #000;
    overflow: hidden;
}
.video-facade .play-button {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
}
.video-facade .thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-facade .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    text-shadow: 0 0 10px black;
    pointer-events: none;
}
.video-facade .play-icon svg {
    width: 64px;
    height: 64px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    overflow: inherit;
}