body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	background-color: #fff;
}
.logo {
	width: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo img {
	width: 100%;
	opacity: 1;
	transition: opacity 0.6s ease-in-out, filter 0.6s ease-in-out, transform 0.5s ease;
}

.logo img:hover {
	transform: scale(1.02);
}

.coming-soon {
	margin-top: 20px;
	font-size: 24px;
	text-align: center;
	font-weight: bold;
}

