/* You can add custom styles here */
.filmstrip-container {
    overflow-x: hidden;
    cursor: grab;
}

.filmstrip {
    display: flex;
    width: max-content;
}

.filmstrip-item {
    flex-shrink: 0;
    width: 40vw;
    height: 60vh;
    margin: 0 2vw;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.filmstrip-item:hover {
    transform: scale(0.95);
} 