html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

*, *:before, *:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	margin: 0;
	background: #000810;
	color: #fff;
	font-family: "Anybody", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	line-height: 1.5;
	font-weight: 700;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	width: 100%;
	height: 100%;
}

h1 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 900;
}

a {
	color: #fff;
	text-decoration: none;
}

small {
	display: block;
	text-transform: uppercase;
	letter-spacing: 10%;
	font-size: .875rem;
}

.nowrap {
	white-space: nowrap;
}

.bg {
	position: fixed;
	left: -50%;
	top: -50%;
	width: 200%;
	height: 200%;
	background-position: center;
	background-size: cover;
	z-index: -2;
	pointer-events: none;
	opacity: .67;
	filter: saturate(1.5) blur(100px);
	animation: spin 90s linear infinite;
}

.bg2 {
	position: fixed;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(transparent, rgba(0, 0, 0, .75));
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.outer {
	display: flex;
	width: 100%;
	min-height: 100%;
}

.outer .a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100%;
}

.cover {
	display: block;
	width: 75%;
	max-width: 40rem;
	aspect-ratio: 1;
	border-radius: 1.25%;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none;
	box-shadow: 0 .33rem 1rem rgba(0, 0, 0, .25);
	animation: entrance .67s cubic-bezier(0, 0, .25, 1) forwards;
}

@keyframes entrance {
	0% {
		transform: scale(.95);
		opacity: .25;
		filter: blur(.125rem);
	}
	100% {
		opacity: 1;
		transform: none;
		filter: none;
	}
}

.outer .b {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 45vw;
	min-width: 27.5rem;
	min-height: 100%;
	padding: 1.5rem;
	padding: 1.5rem 3vw;
	background: rgba(0, 0, 0, .5);
}

.info * {
	transform-origin: left;
	animation: entrance .33s cubic-bezier(0, 0, .25, 1) forwards;
}

.info small {
	margin-top: 1rem;
	color: rgba(255, 255, 255, .67);
}

.links {
	margin: .5rem -.25rem 2rem;
	max-width: 22rem;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none;
}

@supports (animation: link-slide) {
	.links a {
		opacity: 0;
		filter: blur(.5rem);
	}
}

.links a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: start;
	height: 4rem;
	padding: 0 1rem;
	margin-top: 1rem;
	border-radius: .5rem;
	text-align: left;
	background: linear-gradient(135deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .75), rgba(0, 0, 0, .5));
	background-size: 125%;
	color: #fff;
	animation: link-slide .33s ease-out forwards;
	box-shadow: 0 .33rem 1rem rgba(0, 0, 0, .25);
	border: .125rem solid rgba(255, 255, 255, .25);
	transition: scale .1s, border-color .2s;
	overflow: hidden;
}

.links a:nth-child(2) { animation-delay: .05s; }
.links a:nth-child(3) { animation-delay: .1s; }
.links a:nth-child(4) { animation-delay: .15s; }
.links a:nth-child(5) { animation-delay: .2s; }
.links a:nth-child(6) { animation-delay: .25s; }
.links a:nth-child(7) { animation-delay: .3s; }
.links a:nth-child(8) { animation-delay: .35s; }
.links a:nth-child(9) { animation-delay: .4s; }
.links a:nth-child(10) { animation-delay: .45s; }
.links a:nth-child(11) { animation-delay: .5s; }

@keyframes link-slide {
	0% {
		filter: blur(.5rem);
		transform: translateY(-1rem);
		opacity: 0;
	}
	67% {
		filter: none;
		transform: translateY(.25rem);
		opacity: 1;
	}
	100% {
		filter: none;
		transform: none;
		opacity: 1;
	}
}

.links a.link-download {
	background: linear-gradient(135deg, #4ff, #bff, #dff, #8ff, #4df, #4ef, #8ff, #dff, #4ff);
	background-size: 150% 150%;
	border-color: rgba(255, 255, 255, .33);
	color: #000;
	animation: link-slide .33s ease-out forwards, gradient-shift 8s cubic-bezier(.45,.05,.55,.95) infinite;
}
.links a.link-download:not(:focus-visible) {
	animation: link-slide .33s ease-out forwards, gradient-shift 8s cubic-bezier(.45,.05,.55,.95) infinite, outline-pulse 2s linear infinite;
}

@keyframes gradient-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes outline-pulse {
	0% {
		outline: transparent solid .125rem;
		outline-offset: -.125rem;
	}
	25% {
		outline: rgba(255, 255, 255, .75) solid .125rem;
		outline-offset: -.125rem;
	}
	75% {
		outline: transparent solid .125rem;
		outline-offset: .25rem;
	}
	100% {
		outline: transparent solid .125rem;
		outline-offset: .25rem;
	}
}

.links a .service {
	display: flex;
	align-items: center;
	justify-content: left;
	width: 12rem;
	max-width: 50%;
	color: rgba(255, 255, 255, .33);
}

.links a.link-download .service {
	color: rgba(0, 0, 0, .5);
}

.links a .action {
	position: absolute;
	right: .625rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: .25rem;
	text-transform: uppercase;
	width: 7.5rem;
	border: .125rem solid rgba(255, 255, 255, .125);
}
.links a.link-download .action {
	border-color: rgba(0, 0, 0, .125);
}

/* .links a .action svg {
	width: 1.5rem;
	opacity: .5;
	transition: opacity .2s;
} */

@media (max-width: 50rem) {
	.bg2 {
		background: linear-gradient(transparent, rgba(0, 0, 0, .75));
	}
	.outer {
		flex-direction: column;
	}
	.outer .a {
		padding: 1.5rem 0 1rem 0;
		min-height: initial;
		flex: none;
		background: none;
	}
	.cover {
		width: 50%;
		max-width: 15rem;
		border-radius: 2%;
	}
	.outer .b {
		display: block;
		min-width: initial;
		max-width: 100%;
		height: 100%;
		min-height: initial;
		padding: 2rem 1rem;
		padding-top: 0;
		text-align: center;
		background: none;
	}
	.info * {
		transform-origin: center;
	}
	.links {
		margin-left: auto;
		margin-right: auto;
		margin-top: 1.5rem;
	}
}

@media (hover: hover) {
	.links a:hover {
		scale: 1.05;
		border-color: rgba(255, 255, 255, .5);
	}
	.links a:hover .action svg {
		opacity: 1;
	}
}