@charset "UTF-8";
/* CSS Document */


#cover {
	position: relative;
	height: 100vh;
	z-index: 1;
}

#cover::before {
	content: '';
	display: block;
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background-image: url(../images/topimage01.jpg);
	background-size: cover;
	background-position: center top;
}


#coverTxt {
	position: absolute;
	top:70%;
	left: 20px;
	z-index: 10;
	color: #ffffff;
	text-shadow: 0 0 2px #000000;
}

#coverTxt h1 {
	font-size: 24px;
	letter-spacing: 0.025em;
}

#coverTxt p {
	padding: 10px 0 0 24px;
	font-size: 14px;
	letter-spacing: 0.05em
}


#summary {
	position: relative;
	z-index: 10;
	min-height: 100vh;
	padding-top: 200px;
	padding-left: 20px;
	padding-bottom: 50px;
	padding-right: 10px;
	color: #ffffff;
	box-sizing: border-box;
}

#summary p {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 28px;
	max-width: 600px;
	text-shadow: 0 0 2px #000000;
	letter-spacing: 0.05em;
}


#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: -1;
	background-color: rgba(0,0,0,0.70);
	opacity: 0;
	transition: opacity 1s;
}

#overlay.olDisp {
	opacity: 1;
	transition: opacity 1s;
}

.downArrow {
	height: 20px;
	width: 40px;
	margin: 30px 0 0 120px;
	animation: blinkArrow 1s alternate infinite ;
}

@keyframes blinkArrow {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}
