@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800;900&display=swap');

html, body {
	width: 100%;
	height: 100%;
	text-align: left;
	font-size: 18px;
	font-family: Outfit, sans-serif;
	color: #fff;
	margin: 0px 0px 0px 0px;
	border: 0px;
	padding: 0px 0px;
	overflow-x: hidden !important;
	background: #000935; 

}














canvas {
	position: absolute;
	max-width: 1200px !important;
	max-height: 1200px !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	overflow-x: hidden !important;
}




.container {
	width: 100vw;
	height: 100vh;
	overflow-x: hidden !important; 
	
	
}




:focus {
	outline: none !important;
}

* {
  box-sizing: border-box;
}



.logoTop {
	width: 430px;
	margin: 10px auto 0;
	display: block;
}



.soonTxt {
	font-size: 36px;
	line-height: 40px;
	font-weight: 800;
}


.outer {
	display: flex;
	justify-content: center;
	align-items: center;
	
}

.inner {
	max-width: 600px;
	margin: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}


.button {
	background: linear-gradient(-45deg, #3f00b5, #9f69fe, #27c8b7, #3f00b5);
	background-size: 800% 400%;
	padding: 1em 2em;
	display: inline-block;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	color: white;
	text-decoration: none;
	transition: all .5s ease-in-out;
	animation: gradient 10s infinite cubic-bezier(.62, .28, .23, .99) both;
	margin-right: 8px;
}

.button:nth-child(2) {
	margin-left: 8px;
}








.button:hover {
	animation: gradient 3s infinite;
	transform: scale(1.05);
	color: white;
}

.button:active {
	animation: gradient 3s infinite;
	transform: scale(0.8);
	color: white;
}

@keyframes gradient {
 0% {
  background-position: 0% 50%;
 }

 50% {
  background-position: 100% 50%;
 }

 100% {
  background-position: 0% 50%;
 }
}


.modal {
	background: rgba( 0, 0, 0, 0.25 );
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	backdrop-filter: blur( 6px );
	-webkit-backdrop-filter: blur( 6px );

}

.glassmorphic {
	background: rgba( 255, 255, 255, 0.35 );
	box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
	backdrop-filter: blur( 6px );
	-webkit-backdrop-filter: blur( 6px );
	border-radius: 10px;
	border: 1px solid rgba( 255, 255, 255, 0.18 );
}


.modal-title {
	font-size: 18px;
	line-height: 20px;
	font-weight: 500;
	padding-left: 10px;
}


.modal-body {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	padding: 30px;
}

.modal-body a {
	color: #1eda90;
	font-weight: 600;
	transition: all .5s ease-in-out;
}

.modal-body a:hover {
	opacity: 0.8;
}



.smlTxt {
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
}














