.container {
	position: absolute;
	width: 480px;
	height: 350px;
}

.tlo {
	position: absolute;
	z-index: -1;
	width: 480px;
	height: 350px;
}

.box {
	width: 480px;
	height: 350px;
}
.rycerz {
	position: absolute;
	z-index: 1;
	bottom: 0px;
	animation-name: fall;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.skarb {
	position: absolute;
	z-index: 1;
	right: 0px;
	bottom: 0px;
}

.smok {
	position: absolute;
	z-index: 1;
	right: 0px;
}

@keyframes fall {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-90deg);
	}
}
