body {
	background: linear-gradient(-45deg, #011C40, #011126, #1A4173, #0D0D0D);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

.carousel .slider-size {
	height: 300px;
	background-position: 50% 50% !important;
	background-size: cover !important;
}

.vh-75 {
	height: 75vh !important
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}