.grid-container {
	display: inline-grid;
	/* row-gap: 50px; */
	/* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr; */
	/* grid-template-columns: repeat(8, 1fr); */
	background-color: #2196f3;
	padding: 10px;
}

.grid-item {
	background-color: #ffffffcc;
	border: 1px solid #000000cc;
	padding: 20px;
	font-size: 30px;
	text-align: center;
	aspect-ratio: 1/1;
}

.slug {
	background-color: #7f3300;
}

.slug_head {
	background-image: url("image/slug_head.png");
	background-size: cover;
}

.wall {
	background-image: url("image/wall.png");
	background-size: cover;
}

.spike {
	background-image: url("image/spike.png");
	background-size: cover;
}

.food {
	background-image: url("image/food.png");
	background-size: cover;
}

.DEMONIC_food {
	background-image: url("image/DEMONIC\ food.png");
	background-size: cover;
}

.GOLD_food {
	background-image: url("image/GOLD\ food.png");
	background-size: cover;
}

.boot {
	background-image: url("image/boot.png");
	background-size: cover;
}

#game-over {
	position: fixed;
	top: 0px;
	left: 0;
	background-color: magenta;
	width: 100%;
	height: 100%;
}

#new-level-contaner {
	background-color: rgba(128, 128, 128, 0.426);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#new-level {
	background-color: rgba(0, 229, 255, 1);
	width: 30em;
	height: 10em;
	padding: 0.5em;
}
.hidden {
	display: none !important;
}

.button {
	background-color: #7b04aa;
	border: none;
	color: rgb(0, 234, 255);
	padding: 15px 32px;
	text-align: center;
	text-decoration: slateblue;
	display: inline-block;
	font-size: 16px;
}

.button:hover {
	background-color: #a732d5;
	color: rgb(0, 234, 255);
	box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
		0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.button:active {
	background-color: #600286;
}
