body {
	display: grid;
	grid-template-columns: repeat(5, 20vw);
	grid-template-rows: 10vh 50vh 40vh;
	background: gold;
	margin:0;
	touch-action: none;
	font-size: 8vh;
}

#where {
	grid-area: 1/1/2/4;
	display: flex;
	justify-content: center;
}

#points {
	grid-area: 1/4/2/6;
	display: flex;
	justify-content: center;
	background: pink;
}

#banknote {
	grid-area: 2/1/3/6;
	display: flex;
	justify-content: center;
	background: green;
}

#banknote > img {
	height: 100%;
	width: 100%;
}

.choice {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, black, gray 40%, gray 60%, black);
	color: white;
	font-size: 5vh;
}

.choice > img {
	width: 80%;
	max-height: 60%;
}
