#notificationDiv{
	z-index: 1000;
	position: absolute;
	display: none;
	margin: 10px;
	padding: 5px;
	background-color: rgba(0, 0, 0, 0.3);
	font-family: TTChocolates-Light,ar-udjingxiheib5, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.2em;	
	color: #CCCCCC;		
}

#overlayDiv{
	z-index: 10000;
	position: absolute;
	width: 100vw;
	height: 100vh;
	display: none;
	background-color: rgba(0, 0, 0, 0.6);
	overflow-y: scroll;
	align-items: center;
	justify-content: center;
	margin: 0px;
	padding: 0px;
}


#overlayClose{
	right: 10px;
	top: 10px;
	position: fixed;
	z-index: 100000;
}


#overlayContents{
	position: relative;
	padding: 40px;
}


#project{
	width: 90%;
	height: 90%;
	position: absolute;
	display: grid;
	grid-auto-columns: 200px;
	grid-row-gap: 20px;
	grid-column-gap: 40px;
	padding: 20px;
	z-index: 10000;
}

.column{
	background-color: rgba(255, 255, 255, 0.8);
}


.column{
	padding: 40px;
	/*border: 1px #FFF solid;*/
}

.column h1{
	color: #DF4A52;
	font-family: TTChocolates-DemiBold,ar-fangxinshuh7b5std, sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.6;
}

.column h2{
	color: #DF4A52;
	font-family: TTChocolates-DemiBold,ar-fangxinshuh7b5std, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.6;
}

.column h3{
	color: #DF4A52;
	font-family: TTChocolates-DemiBoldIt,ar-fangxinshuh7b5std, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.6;
}

.column a{
	color: #DF4A52;
}

.column a:hover{
	color: #FFFFFF;
}


.column p{
	font-family: TTChocolates-Light,ar-udjingxiheib5, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 2.2;
	letter-spacing: 0.2em;	
	color: #4D4D4D;
	/*text-align: justify;*/
}

.column b{
	font-family: TTChocolates-DemiBold,ar-udjingxiheib5, sans-serif;
	font-style: normal;
	font-weight: 800;
}

.column ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-family: TTChocolates-Light,ar-udjingxiheib5, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 2.2;
	letter-spacing: 0.2em;	
	color: #4D4D4D;
	text-align: justify;
}

.columnImg {
	/*grid-column-start: 1;*/
	padding: 20px;
	/*border: 1px #FFF solid;*/
	color: #DF4A52;
	font-family: TTChocolates-Light,ar-udjingxiheib5, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 2.2;
	letter-spacing: 0.2em;
	text-align: center;
}


@media screen and (max-width: 1300px) and (orientation: landscape) {


	#project{
		grid-template-columns: [first] 1fr [end];
	}
}


@media screen and (min-width: 1301px) and (orientation: landscape) {

	#project{

		grid-template-columns: [first] 1fr [second] 1fr [end];
	}

	.columnImg{
		grid-column: span 2;
	}

}

@media screen and (orientation: portrait) {

	#project{
		grid-template-columns: [first] 1fr [end];
	}

	.column h1{
		text-shadow: 1px 1px 5px #FFF;
		font-size: 24px;
	}

	.column h2{
		text-shadow: 1px 1px 5px #FFF;
		font-size: 22px;
	}

	.column h3{
		text-shadow: 1px 1px 5px #FFF;
		font-size: 20px;
	}

	.column p{
		font-size: 16px;
	}


}