@import url("https://fonts.googleapis.com/css2?family=DM+Sans&display=swap");

* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #0e1016;
	font-family: "DM Sans", sans-serif;
	height: 100%;
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
	color: #d9dfe6;
	text-align: center;
}

body::before {
	content: "";
	position: fixed;
	left: 0;
	top: -10px;
	width: 100%;
	height: 10px;
	box-shadow: 0 0 700px 300px #070b137a;
	z-index: -1;
}

body::after {
	content: "";
	position: fixed;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 10px;
	box-shadow: 0 0 700px 300px #6693fd10;
	z-index: -1;
}

.unselectable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	max-width: 600px;
	margin: 0 auto;
	padding: 0 15px;
}

.title {
	font-size: 100px;
	font-weight: 700;
	margin-bottom: 20px;
	white-space: nowrap;
}

.title-white {
	color: #ffffff;
	margin-left: 10px;
}

.title-color {
	color: #1f6feb;
	text-shadow: 0 0 150px #1f6feb;
	margin-top: 10px;
	background-image: linear-gradient(45deg, #1f6feb, #1f6feb 70%, #1cbfff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-background-clip: text;
	-moz-text-fill-color: transparent;
}

.description {
	font-size: 16px;
	line-height: 1.3;
	margin-bottom: 30px;
}

.download {
	font-size: 11px;
	color: #d9dfe681;
}

.version,
.version-number {
	font-size: 25px;
	line-height: 2;
}

.version-number {
	color: #1f6feb;
	text-shadow: 0 0 10px #1f6feb;
	animation: pulse 2s infinite;
	transition: color 1s;
}

@keyframes pulse {
	50% {
		color: white;
	}

	100% {
		color: #1f6feb;
	}
}

/* ---- release notes and instructions ---- */
.instructions {
	font-family: "DM Sans", sans-serif;
	padding: 100px;
	font-size: 14px;
	line-height: 1.5;
	color: #c9d1d9;
	text-align: left;
}

.instruction {
	font-size: 16px;
	margin-bottom: 75px;
}

/* ---- Animated Button ---- */
button {
	margin-bottom: 10px;
	position: relative;
	padding: 10px 20px;
	border-radius: 7px;
	border: 1px solid #1f6feb;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	background: transparent;
	color: #fff;
	overflow: hidden;
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

button:hover {
	background: #1f6feb;
	-webkit-box-shadow: 0 0 30px 5px #1f6feb;
	box-shadow: 0 0 30px 5px #1f6feb;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

button:hover::before {
	-webkit-animation: sh02 0.5s 0s linear;
	animation: sh02 0.5s 0s linear;
}

button::before {
	content: "";
	display: block;
	width: 0px;
	height: 86%;
	position: absolute;
	top: 7%;
	left: 0%;
	opacity: 0;
	background: #fff;
	-webkit-box-shadow: 0 0 50px 30px #fff;
	box-shadow: 0 0 50px 30px #fff;
	-webkit-transform: skewX(-20deg);
	-ms-transform: skewX(-20deg);
	transform: skewX(-20deg);
}

@-webkit-keyframes sh02 {
	from {
		opacity: 0;
		left: 0%;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
		left: 100%;
	}
}

@keyframes sh02 {
	from {
		opacity: 0;
		left: 0%;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
		left: 100%;
	}
}

button:active {
	-webkit-box-shadow: 0 0 0 0 transparent;
	box-shadow: 0 0 0 0 transparent;
	-webkit-transition: box-shadow 0.2s ease-in;
	-webkit-transition: -webkit-box-shadow 0.2s ease-in;
	transition: -webkit-box-shadow 0.2s ease-in;
	transition: box-shadow 0.2s ease-in;
	transition: box-shadow 0.2s ease-in, -webkit-box-shadow 0.2s ease-in;
}

/* ---- Loading animation ---- */
.loader {
	margin-top: 30px;
	width: 6em;
	height: 6em;
	font-size: 10px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader .face {
	position: absolute;
	border-radius: 50%;
	border-style: solid;
	animation: animate023845 3s linear infinite;
}

.loader .face:nth-child(1) {
	width: 100%;
	height: 100%;
	color: #ffffff;
	border-color: currentColor transparent transparent currentColor;
	border-width: 0.2em 0.2em 0em 0em;
	--deg: -45deg;
	animation-direction: normal;
}

.loader .face:nth-child(2) {
	width: 70%;
	height: 70%;
	color: #1f6feb;
	border-color: currentColor currentColor transparent transparent;
	border-width: 0.2em 0em 0em 0.2em;
	--deg: -135deg;
	animation-direction: reverse;
}

.loader .face .circle {
	position: absolute;
	width: 50%;
	height: 0.1em;
	top: 50%;
	left: 50%;
	background-color: transparent;
	transform: rotate(var(--deg));
	transform-origin: left;
}

.loader .face .circle::before {
	position: absolute;
	top: -0.5em;
	right: -0.5em;
	content: "";
	width: 1em;
	height: 1em;
	background-color: currentColor;
	border-radius: 50%;
	box-shadow: 0 0 2em, 0 0 4em, 0 0 6em, 0 0 8em, 0 0 10em,
		0 0 0 0.5em rgba(255, 255, 0, 0.05);
}

@keyframes animate023845 {
	to {
		transform: rotate(1turn);
	}
}
