.flappy {
	background-image: url(/assets/flappy-background-f662d1b683a8a65d770a6881b6a3b261bce2361dd25beaac5acac5c56148959f.png);
	width: 420px;
	height: 640px;
	margin: auto;
	
	position: relative;
	overflow: hidden;
}

.flappy .score {
	z-index: 10;
	padding: 1rem;
	color: white;
	background-color: rgba(0, 0, 0, 0.5);
	position: relative;
}

.flappy .highscores {
	color: white;
}

.flappy .prompt {
	z-index: 20;
	padding: 1rem;
	color: white;
	background-color: rgba(0, 0, 0, 0.5);
	
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	
	text-align: center;
}

.flappy .bird {
	z-index: 1;
	background-image: url(/assets/flappy-bird-d027de975c3f289fb2b96ef1ba5463d9a94fd4131d0e0984e5b5a955884c20f0.png);
	position: absolute;
	background-size: contain;
	
	transition: all 0.05s linear 0s;
}

.flappy .pipe {
	z-index: 5;
	background-image: url(/assets/flappy-pipe-04d0fb3b6ec8724d0dedfe14574aaced0cb30368280f186f2427664861d60f84.png);
	position: absolute;
	background-size: contain;
	
	transition: all 0.05s linear 0s;
}
