@charset "utf-8";
/* CSS Document */
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


.container{
	height: 100vh;
	width: 100%;
/*	position: relative;*/
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;

}

.libutton {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 7px;
	text-align: center;
	outline: none;
	text-decoration: none !important;
	color: #ffffff !important;
	width: 200px;
	height: 32px;
	border-radius: 16px;
	background-color: #0A66C2;
	font-family: "SF Pro Text", Helvetica, sans-serif;
	z-index: 1;
}

.overlay{
	background-color: rgba(0,0,0,0.1);
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10
}


@keyframes fade{
	
	0%{ 
		opacity: 1;
	}
	
	33%{ 
		opacity: 0;
	}
	
	67%{ 
		opacity: 0;
	}
	
	100%{ 
		opacity: 1;
	}	
}

img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	animation: fade 9s ease-in-out infinite alternate;
}

img:nth-of-type(1) {
	animation-delay: 0s;
}

img:nth-of-type(2) {
	animation-delay: 3s;
}

img:nth-of-type(3) {
	animation-delay: 6s;
}





.heading{
	font-size: 50px;
	color: #fff;
	position: relative;
	z-index: 100;
}

.heading2 {
	font-size: 25px;
	color: #fff;
	position: relative;
	z-index: 100;
}

