body{
	background-color: #1e1e1e;
	color: #999999;
}

.page{
	display: flex;
	justify-content:space-around;
	height: 700px;
}



/*===============================================NAV styling========================*/

nav{
	/*display: flex;*/
	/*justify-content:space-between;*/
	/*border-bottom: solid 5px #999999; */
	border-right: solid 3px #999999;
	padding: 3em;
}

.options{
	/*color: #099999; cool but no*/
	display: flex;
	justify-content:space-around;
	flex-direction:column;
}

.nav-option{
	margin: 1em 0em;
	font-size: 32px;
}

a, a:visited{
	color: #999999;
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

.title{
	color:#00ea32;
}

.name{
	/*color:#00ea32;*/
	font-size: 48px;
}

#sass{
	/*display: none;*/
	opacity: 0;
}

/*==============================================Game styling===============================*/

.game{
	width: 80%;
}

section{
	display: flex;
	justify-content:space-around;
	flex-direction: column;
	/*text-align: center;*/
}

.content{
	margin: 0 auto;
	width: 70%;
	line-height: 26px;
	/*font-size: 20px;*/
}

.content-player{
	display: none; /*to be changed*/
	margin-top: 1em;
}

.content-item{
	margin-top: 3em;
	display: none; /*to be changed*/
}

.choice-container{
	display: flex;
	justify-content: space-around;
	margin-top: 5em;
}

#choice1{
	display: none; /*to be changed*/
}
#choice3{
	display: none; /*to be changed*/
}

.flex-item{
	border: solid 2px #999999;
	margin:  1em ;
	text-align: center;
	padding: 3px;
}

.flex-item:hover{
	color: white;
	cursor: pointer;
}

/*============================================about=======================================*/

/*.about_title{
	color: #00ea32;
	text-align: center;
	margin: 0 auto;
	margin: 2em;
	font-size: 30px;
}

.aboutContent{
	display: flex;
	justify-content:space-around;
	flex-direction:column;
}

.aboutContent h2,h3{
	font-size: 24px;
	text-align: center;
	margin: 0 auto;
	width: 60%;
}*/



@media screen and (max-width: 815px){
	.page{
		flex-direction:column;
	}
	.title{
		text-align: center;
	}
	.options{
		flex-direction: row;
	}

	.game{
		width: 100%;
		margin-top: 20em;
	}
}

@media (max-width: 600px){
	
	.options{
		margin-bottom: 10em;
	}
	.choice-container{
		flex-direction:column;
	}
}

@media (max-width: 430px){
	.title{
		padding-top: 5em;
	}
	.game{
		margin-top: 23em; 
	}

	.aboutContent{
		width: 100%;
		font-size: 10px;
	}

	.about_title{
		font-size: 22px;
	}

}





