@charset "utf-8";
/* CSS Document */

#showcase{
	background-image: url(../images/backgrounds/fullPageBackground.jpg);
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 20px;
}

#showcase h1{
	font-size: 40px;
	padding-top: 20px;
	padding-right: 40px;
	padding-left: 40px;
	padding-bottom: 20px;
	line-height: 36px;
	border-radius: 6px;
	background-color: rgba(0,0,0,0.48);
	color: #fff;
}

#showcase p{
	padding-top: 10px;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 10px;
	font-size: 20px;
	background-color: rgba(255,255,255,0.64);
	color: #474747;
	font-style: italic;
	border-radius: 6px;
	margin-top: 30px;
	position: fixed;
	bottom: 10px;
	right: 20px;
	z-index: 500;
}

