body {
	/*gets rid of the small border around the whole page(the body)*/
	margin: 0;
	padding: 0;
}

div {
	float: left;
}
/*container holds everything*/
#container {
	display: flex;
	width: 100%;
	min-height: 100vh;
	height: auto;
}
/*menu holder is used as a spacer because menu is fixed position so flex won't work on it*/
.menuHolder {
width: 100px;
}
/*menu is on the left size and is always 100 pixels*/
.menu {
	background-color: grey;
	position: fixed;
	height: 100vh;
	width: 100px;
}
/*menu box is in the menu stacked vertically down the screen*/
.menuBox {
	clear: both;
	width: 100%;
	height: 100px;
	color: black;
	font-size: 40pt;
}

.menuBox:hover {
	background-color: dimgray;
	font-size: 50pt;
}

.menuText { 
	width: 100%;
	height: 25%;
	text-align: center;
	font-size: 15pt;
}

.menuIcon {
	width: 100%;
	height: 75%;
	margin-top: 5%;
	text-align: center;
}

/*main holds the header and the content. It grows to fit the rest of the page width*/
.main {
	flex: 1 1 1%;
	flex-flow: column wrap;
	background-color: moccasin;
	align-items: stretch;
	color: white;
}

.header {
	font-size: 25pt;
	background-color: teal;
	border-radius: 25px;
	padding: 1%;
	padding-left: 5%;
	padding-right: 5%;
	text-align: center;
	margin: 1%;
	width: 88%;
}

.content {
	float: right;
	background-color: teal;
	border-radius: 25px;
	padding: 1%;
	padding-left: 5%;
	padding-right: 5%;
	margin: 1%;	
	width: 88%;
}

#imgOne {
	object-fit: cover;
	width: 100%;
	height: 50vh;
}

#imgTwo {
	float: left;
	width: 50%;
	margin: 25px;
}

.Gallery {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
}

.GalleryImg {
	min-width: 400px;
	max-width: 500px;
	width: 25%;
	margin: 1%;
	object-fit: contain;
}

@media only screen and (max-width: 800px) {
	.Gallery {
		display: flex;
		flex-direction: column;
	}
	.GalleryImg {
		min-width: 1px;
		max-width: 500px;
		width: 100%;
		margin: 1%;
		object-fit: contain;
	}
}

#topBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}

#topBtn:hover {
  background-color: darkslategray;
}

#game {
	background-color: mistyrose;
	width: 90%;
	padding: 5%;
	height: auto;
	color: black;
}

#clickImg {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	width: 500px;
	height: auto;
}

#clickImgHolder {
	width: 100%;
	height: 400px;
}

@media only screen and (max-width: 800px) {
	#clickImg {
		width: 90%;
	}
}

.gameInfo {
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 25pt;
}

.shop {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	background-color: lightblue;
	width: 100%;
	height: auto;
}

.item {
	width: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: mistyrose;
	margin: 10px;
	padding: 10px;
}

.itemImg {
	width: 100%;
	height: 50%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.btnHolder {
	width: 100%;
	height: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.gameBtn {
	margin: 5px;
	width: 90%;
	height: 25px;
	background: blue; 
	color: white;
	border-radius: 12px;
	border: none;
}

.gameBtn:hover {
	width: 95%;
	height: 100%;
}

.gameholder {
	width: 100%;
	height: 75vh;
}

#pythongame {
	width: 100%;
	height: 75vh;
	border: none;
}