body {
	font-family: "Montserrat", "Roboto", "Open Sans", sans-serif !important;
	margin: 0;
	padding: 0;
}

.background {
	min-height: 100vh;
}

.background .background-1 {
	background: url(./img/starsky.png);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -21;
	background-attachment: fixed;
	background-color: black;

}

.background .background-2 {
	background-image: url(./img/star-2.png);
	animation-name: zoomAnimation;
	transition-timing-function: ease;
	animation-duration: 40s;
	animation-iteration-count: infinite;
	z-index: -20;
	background-size: 100% 100%;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	background-attachment: fixed;
}

.background .background-3 {
	background-image: url(./img/starsky.png);
	animation-name: zoomAnimationTwo;
	animation-duration: 20s;
	transition-timing-function: linear;
	animation-iteration-count: infinite;
	z-index: -19;
	background-size: 100% 100%;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	background-attachment: fixed;
}

@keyframes zoomAnimation {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.5);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes zoomAnimationTwo {
	0% {
		transform: scale(1.3);
	}

	50% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.3);
	}
}

/*--------------------------------------*/

.background .container {
	width: 100%;
	height: 100vh;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	max-width: 1200px;
	color: white;
	display: flex;
	flex-direction: column;
}

.background .container .imgContainer img {
	width: 140px;
	object-fit: cover;
	padding-top: 10px;
	padding-bottom: 10px;
}

.background .container .content {
	flex: 1;
	margin-top: 10vh;
}	

.background .container .content h1 {
	text-align: center;
	margin-top: 20px;
	color: white;
	margin-bottom: 6px;
	text-transform: uppercase;
	font-size: 50px;
	display: flex;
	flex-direction: column;
}

.background .container .content small {
	display: block;
	font-size: 20px;
	text-align: center;
}

.background .container .content h2 {
	text-align: center;
	margin-top: 20px;
	color: white;
	margin-bottom: 6px;
	font-size: 24px;
}

@media screen and (max-width: 1199px) {
	.container {
		max-width: 960px;
	}

}

@media screen and (max-width: 991px) {
	.container {
		max-width: 720px;
	}

}

@media screen and (max-width: 767px) {
	.container {
		max-width: 540px;
	}

}

@media screen and (max-width: 575px) {
	.container {
		max-width: 100%;
	}
}