.comment{
    background: #4c4cf8;
    color: white;
}

img.rotation{

}

.video-bg{
    width: 100%;
    height: 100%;
    background-image: url('/images/home_vid_bg.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
@media (max-width: 400px) {
    .video-bg{
        background-image: url('/images/home_vid_bg_w400.webp');
    }
}
@media (max-width: 800px) {
    .video-bg{
        background-image: url('/images/home_vid_bg_w800.webp');
    }
}

.charicon{
    height: 90px;
    width: auto;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
}

.video-image {
    display: block;
    width: 100%;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    pointer-events: none;
    filter: drop-shadow(0 0 8px black);
}

.video-wrapper:hover .video-image {
    filter: brightness(50%);
    transform: scale(1.05);
}

.video-wrapper:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.2);
}
