.crt-container {
    background: transparent;
    position: relative;
    top: 0;
    left: 0vh;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.crt-container iframe {
    position: fixed;
    background: transparent;
    margin-left: 85vh;
    width: 100vh;
    height: 100vh;
    pointer-events: none;
    scale: 2.5;
}

.crt-overlay {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0vh;
    width: 100%;
    height: 100%;
    z-index: 100;

    /* retro glow effect */
    box-shadow: 0 0 10px #00ff00;
    mix-blend-mode: overlay;

    /* pointer-events: none; */
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
    mix-blend-mode: multiply;
}

.delayed-video {
    opacity: 0.1;
    animation: showVideo 3s ease-in-out;
}

.carousel-item {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

@keyframes showVideo {
    0% {
        opacity: 0;
    }

    100% {
        opacity: .1;
    }
}