/** Banner content **/

.banner-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0;
	position: fixed;
	background: indianred url(../images/saturn.jpg) center 0 no-repeat;
	background-size: 120%
}

/* Mask the banner image element */
.banner-image {visibility: hidden}

.banner-title {
	position: absolute;
	color: #fff;
	text-align: center
}

.banner-title h1 {
	text-shadow: 0 0 30px #000;
	font-size: 7vw;
	font-weight: 600
}

.banner-title hr {
	height: 2px;
	margin: 20px 0;
	opacity: 0.65
}

.banner-title h3 {
	text-shadow: 0 0 15px #000;
	font-size: 4vw
}

.scroll-down {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute
}

.scroll-down ion-icon {
	opacity: 0.5;
	color: #fff;
	font-size: 30px;
	-webkit-animation: levitate 3s infinite;
	animation: levitate 3s infinite
}