html, body {
	width: 100%;
	height: 100%;
	background-image: url("../../assets/img/default/bg.jpg");
}

.dancingwillie {
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 150px;

	background-image: url("../../assets/img/default/williegif.gif");
	background-size: contain;
}

.nya {
	width: 35%;
	position: relative;
	animation-name: nya;
	animation-duration: 5s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@keyframes nya {
	from {left: 0%;
		transform: scale(1, 1);
		transform-origin: right center;
	}
	to {left: 100%;
		transform: scale(-1, 1);
		transform-origin: left center;
	}
}
