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

body {
	background-attachment: fixed;
	background-image: url('../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;
		}
	}

#title {
	background-color: rgba(0, 0, 0, .7);
	color: white;
	cursor: pointer;
	font-size: 50px;
	margin: 0 auto;
	overflow-wrap: break-word;
	text-align: center;
	-webkit-transition: color 0.2s ease-out;
	width: 100%;	
}

#parent {
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 25%;
}