@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body {
	margin: 0; padding: 0; box-sizing: border-box;
	font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
}

.background{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(-45deg, #00BCD4, #8bc34a, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.coming-soon{
	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
	position: relative; 
	z-index: 3;
}

.coming-soon h1{
	display: block;
	position: relative;
	width: 100%;
	text-align: center;
	color: white;
	text-transform: uppercase;
	padding-bottom: 20px;
}
.coming-soon h1::after{
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 3px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	background-color: red;
}
.coming-soon h2{
	display: block;
	width: 100%;
	text-align: center;
	color: white;
}
.coming-soon h4{
	display: block;
	width: 100%;
	text-align: center;
	color: white;
}