.tiktok-feed {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
    height: 100vh;
    scroll-snap-type: y mandatory;
}

.tiktok-item {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
}

.tiktok-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
