body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: #2b3990;
}

.container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.carousel {
    width: 1326px;
    background-color: #2b3990;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    flex-direction: column;
/*    transition: transform 1s ease-in-out; */
    opacity: 1;
}

.carousel img {
    width: 100%;
    height: 100vh;
    object-fit: contain;
}

.video-player {
    width: 594px;
    background-color: #2b3990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

#videoPlayer {
    opacity: 1;
    transition: all 1s ease-in-out;
    filter: blur(0px);
    border-radius: 3px;

    /*box-shadow: 0 0 10px rgb(255, 242, 0);*/
    width: 100%;
}

#videoPlayer.blur {
    filter: blur(10px);
}

video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
}