		*{
 margin : 0;
 padding: 0;
 box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    overflow: hidden;
    background: repeating-linear-gradient(90deg,
        #f7f7f7 0,
        #f7f7f7 2.5px,
        #eeeeee 2.5px,
        #eeeeee 5px
    );
}

img {
    position: absolute;
    width: 250px;
    cursor: grab;
}

img.dragging {
    cursor: grabbing;
}

@media screen and (max-width: 704px) {

img {
    width: 150px;
}
    
}