* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	background-color: #171C20;
}

body {
    position: relative;
}

.fixedBack {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(5px);
}

.fixedBack:before {
	content: '';
	position: absolute;
	z-index: 21;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 11;
	width: 1px;
	height: 85vh;
	background-color: #FFFFFF;
	opacity: 0.7;
}

.comingText {
	position: absolute;
	z-index: 20;
	top: 50%;
	left:25%;
	transform: translate(-50%, -50%);
	color: #FFFFFF;
	text-align: center;
	padding: 30px;
}

.comingText:before {
	content: '';
	position: absolute;
	z-index: 21;
	width: 100px;
	height: 550px;
	top: 50%;
	left:88%;
	transform: translate(-50%, -50%);
	color: #FFFFFF;
	background-color: #FFFFFF;
	opacity: 0.5;
}

.comingText img{
	position: absolute;
	z-index: 20;
	top: 50%;
	left:50%;
	transform: translate(-50%, -50%);
	opacity: 0.14;
    filter: blur(6px);
}

.comingText p{
	font-family: 'Verdana';
	font-size: 97pt;
	font-weight: lighter;
	letter-spacing: 10pt;
}

.comingText p:nth-child(2),
.comingText p:nth-child(3){
	font-size: 67pt;
	font-weight: bold;
}

.comingText p:nth-child(3){
	font-size: 80pt;
}

.welcomeText {
	position: absolute;
	z-index: 30;
	top: 50%;
	right: 25%;
	transform: translate(50%, -50%);
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
	font-family: 'Verdana';
	font-size: 17pt;
	line-height: 35px;
}

@media (max-width: 750px) {
	.fixedBack:before {
	width: 85%;
	height: 1px;
}

	.comingText {
	top: 25%;
	left:50%;
}

.welcomeText {
	bottom: 35%;
	right: 50%;
	transform: translate(50%, 50%);
	width: 90%;
	font-size: 10pt;
	line-height: 25px;
}

.comingText:before {
	top: 100%;
	left:85%;
}

.comingText p{
	font-size: 50pt;
	letter-spacing: 10pt;
}

.comingText p:nth-child(2){
	font-size: 57pt;
}

.comingText p:nth-child(3){
	font-size: 67pt;
}

.comingText img{
	height: 100%;
}


}