body {
	background: rgb(0,0,0,0.93);
	color: rgb(255,255,255,0.9);
	font-family: Poppins;
	display: flex;
	padding-top: 2em;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-bottom: 40px;
	height: 100%;
}
* { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }

@keyframes blink {
	0% { opacity: 0; }
	10% { opacity: 0.25; }
	15% { opacity: 0.47; }
	20%,70% { opacity: 0.7; }
	75% { opacity: 0.47; }
	80% { opacity: 0.25; }
	100% { opacity: 0; }

}
.coming-soon {
	top:50%;
	bottom:50%;
	position:absolute;
	margin: auto 0;
	font-size: 1.3em;
	width: auto;
}
.coming-soon b {
	animation-name: blink;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-iteration-count: infinite;
}
.contact {
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	position: absolute;
	opacity: 0.3;
	bottom: 3em;
	max-width: 600px;
	text-shadow: 0px 2px rgba(0,0,0,0.7);
}
.contact i {
	display: inline !important;
}

@media only screen and (max-width: 768px) {
	.contact {
		margin: 0 5%;
		font-size: 0.85em;
	}
}