body {
	background-color: ghostwhite;
}

canvas {
    display: none;
	background-color: white;
	border: 2px solid black;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10;
}

div {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 3px auto;
	font-family: "arial";
	background-color: white;
	border: 2px solid black;
	width: 600px;
	height: 50px;
}

#creditsBox, #menu {
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	margin: 3px auto;
	font-family: "arial";
	background-color: white;
	border: 2px solid black;
	width: 600px;
	height: 300px;
}

#creditsBox {
	display: none;
}

#images {
	display: flex;
	border: none;
	justify-content: center;
}

.socials {
	width: 30px;
	height: 30px;
	margin: 3px;
}

#howToPlay {
	display: none;
	flex-direction: column;
	background-color: white;
	border: 2px solid black;
	width: 600px;
	height: 300px;
}

.buttons {
	display: flex;
	border: none;
	flex-direction: row;
	align-items: space-around;
}

#win {
	display: none;
	align-items: center;
}

#lose {
	display: none;
	align-items: center;
}

#statsBox {
	display: none;
}

button {
	height: 25px;
	border: 1px solid black;
	padding: 3px 5px;
	box-shadow: -2px 2px black;
}




