body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: black;
	background-color: #1c1c1c;
	font-family: 'Nerko One', cursive;
	font-size: 18px;
}

#all-content {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
#main-content {
	width: 30%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#header {
	color: white;
	width: 90%;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	background-color: #8a8787c1;
	border-radius: 30px;
	box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.3);
}

#grid-container {
	width: 80%;
	background-color: rgb(205, 205, 10);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	padding: 30px;
	border-radius: 30px;
	box-shadow: 0px 5px 13px rgba(0, 0, 0, 0.9);
	aspect-ratio: 1;
}
.squere {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.squere:hover {
	background-color: rgb(183, 183, 7);
	transition: 0.3s;
}
.rest-btn {
	color: white;
	font-size: 18px;
	border: none;
	letter-spacing: 2px;
	padding: 7px 20px;
	margin-top: 10px;
	background-color: #7b16d9c1;
	border-radius: 30px;
	box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.3);
	font-family: 'Nerko One', cursive;
}
.rest-btn:hover {
	background-color: #630ab7c1;
	cursor: pointer;
	transition: all 0.3s;
}

@media (max-width: 600px) {
	#main-content {
		width: 50%;
	}
	.rest-btn {
		padding: 5px 15px;
	}
}
