body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.food {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin-top: 100px;
    width: 100%;
    gap: 10px;
}

.draggable {
    position: absolute; 
    cursor: grab;
    transition: transform 0.2s, opacity 0.2s;
    touch-action: none;
    z-index: 5;
}

.draggable.is-dragging {
    cursor: grabbing;
    opacity: 0.5;
    transform: scale(1.05);
    z-index: 10;
}

.whiskas img,
.salmon img,
.sushi img {
    height: 100px;
    width: 100px;
    display: block;
    pointer-events: none;
    user-select: none;
}


.cat {
    position: absolute;
    bottom: 10px; 
    right: 10px; 
    z-index: 0;
}

.cat img {
    max-width: 300px;
    width: 100%;
    display: block;
}