
#scene {
    position: absolute;
    top: 0;
    left: 0;
	width: 100%;
    height: 100%;
    /* overflow: hidden; */
    color: #fff;
    z-index: 4;
}

.row {
    position: absolute;
    width: 100%;
    height: 10%;
    opacity: 0;
    pointer-events: none;
}

.item {
    position: absolute;
    width: 38%;
    height: 100%;
    background-image:url('../img/game/spritesheet2.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.item:nth-child(1) {
    left: 5%;
}

.item:nth-child(2) {
    left: 45%;
}

.item:nth-child(3) {
    right: 0%;
}

.item.pillow {
    background-position: 0% 0%;
}

.item.sofa {
    background-position: 0% 20%;
}

.item.chair {
    background-position: 0% 40%;
}

.item.pinkchair {
    background-position: 0% 60%;
}

.item.bed {
    background-position: 0% 80%;
}

.item.bomb {
    background-position: 0% 100%;
}

.item.hidden {
    opacity: 0;
}