.blueHover {/*link style*/
	color: white;
	text-decoration: none;
	-webkit-transition: color 0.2s ease-in-out;
}
	.blueHover:hover {/*blue link animation on hover*/
		color: rgb(153, 194, 255);
		-webkit-transition: color 0.2s ease-in-out;	
	}

body {
	background-attachment: fixed;
	background-image: url('../../../assets/images/superior.jpg');
	background-position: absolute;
	background-size: cover;
	font-family: 'Spectral';
	overflow: none;
	-webkit-user-select: none;

	animation-name: fadeIn;/*fade-in on page load*/
	animation-duration: 5s;
	animation-iteration-count: 1;
	animation-delay: none;
}
	@keyframes fadeIn {/*fade-in opacity settings*/
		from {
			opacity: 0;
		}

		to {
			opacity: 1;
		}
	}

#description {
	background-color: rgba(0, 0, 0, .7);
	color: white;
	cursor: default;
	font-size: 30px;
	line-height: 45px;
	margin: 0 auto;
	overflow-wrap: break-word;
	width: 100%;
}

.text {
	margin-left: 30px;
	margin-right: 15px;
	
}

.indent {
	text-indent: 30px;
}

p {
	margin-bottom: 0px;
	margin-top: 0px;
}

#parent {
	margin-bottom: 30px;
	margin-top: 30px;
	padding-left: 10%;
	padding-right: 10%;
}