@import url('https://fonts.googleapis.com/css?family=Montserrat');

html, body {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	/* color: blue; */
}

.background-image {
	background-image: url('../media/bg-2.jpg');
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: 0.2;
	background-size: cover;
	background-position: center;
	z-index: -1;

}
.coming-header {
	/* background-image: url('../media/bg-2.jpg'); */
	display: flex;
	height: 100vh;
	z-index: 1;
	opacity: 1;
	/* color: blue; */
	/* position: relative; */
}

.logo-section {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	justify-content: center;
	animation: fadeInUp 1.8s 1s ease both;
	font-size: 40px;
	font-family: 'Montserrat', sans-serif;
}

#logo {
	width: 40vw;
	height: 20vw;
}

/* Keyframes and Animation */

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(15px)
	}
	100% {
		opacity: 1;
		transform: translateY(0)
	}
}
