
body{
    overflow-x: hidden;
    background-color: white;
}
#image-track-con {
    height: 100vh;
    width: 100vw;
    background-color: white;
    margin: 0rem;
    margin-top: 3em;
    overflow: hidden;
}


@keyframes horizontal-shaking {

    0% { transform: translateX(5px) }
    25% { transform: translateX(-5px) }
    50% { transform: translateX(5px) }
    100% { transform: translateX(-5px) }
}
.shakeMe{
    animation-name: horizontal-shaking;
    animation-duration: 4s;
}
#image-track {
    display: flex;
    gap: 4vmin;
    left: 50%;
    top: 50%;
    transform: translate(0%, -50%);
    user-select: none; /* -- Prevent image highlighting -- */
}

#image-track > .image {
    width: 50vmin;
    height: 70vmin;
    object-fit: cover;
    object-position: 100% center;
}

