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;
	width: 100%;
	height: 100%;
}

body, button, input {
	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;
}

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;
}

button {
	cursor: pointer;
}

.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: -25%;
	top: -25%;
	width: 150%;
	height: 150%;
	background: linear-gradient(transparent 20%, rgba(0, 0, 0, .75) 80%);
	background-position: center;
	background-size: cover;
	z-index: -1;
	pointer-events: none;
	filter: blur(50px);
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.outer {
	display: flex;
	width: 100%;
	min-height: 100%;
}

.outer .a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100%;
}

.cover-box {
	display: block;
	width: 75%;
	max-width: 40rem;
	aspect-ratio: 1;
	animation: entrance .67s cubic-bezier(0, 0, .25, 1) forwards;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none;
	transition: width .5s, max-width .5s;
}

.cover, .qr {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	border-radius: 1.25%;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none;
	pointer-events: none;
	box-shadow: 0 .33rem 1rem rgba(0, 0, 0, .25);
}

.qr {
	opacity: 0;
}

.cover-box.flip .cover {
	animation: flip-hide-opacity .5s ease-in-out forwards, flip-hide-cover .5s ease-in-out forwards;
}

.cover-box.unflip .cover {
	animation: flip-show-opacity .5s ease-in-out forwards, flip-show-cover .5s ease-in-out forwards;
}

.cover-box.flip .qr {
	animation: flip-show-opacity .5s ease-in-out forwards, flip-show-qr .5s ease-in-out forwards;
}

.cover-box.unflip .qr {
	animation: flip-hide-opacity .5s ease-in-out forwards, flip-hide-qr .5s ease-in-out forwards;
}

@keyframes flip-hide-cover {
	0% {
		transform: none;
	}
	100% {
		transform: perspective(10cm) rotate3d(0, 1, 0, 180deg);
	}
}

@keyframes flip-show-cover {
	0% {
		transform: perspective(10cm) rotate3d(0, 1, 0, 180deg);
	}
	100% {
		transform: none;
	}
}

@keyframes flip-hide-qr {
	0% {
		transform: none;
	}
	100% {
		transform: perspective(10cm) rotate3d(0, 1, 0, -180deg);
	}
}

@keyframes flip-show-qr {
	0% {
		transform: perspective(10cm) rotate3d(0, 1, 0, -180deg);
	}
	100% {
		transform: none;
	}
}


@keyframes flip-hide-opacity {
	0% {
		opacity: 1;
	}
	33% {
		opacity: 1;
	}
	49% {
		opacity: .1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@keyframes flip-show-opacity {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	51% {
		opacity: .1;
	}
	67% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}

.button-qr {
	position: absolute;
	bottom: 1rem;
	right: -1.5rem;
	display: block;
	width: 3rem;
	height: 3rem;
	border-radius: 9rem;
	cursor: pointer;
	animation: entrance .67s cubic-bezier(0, 0, .25, 1) forwards;
}

.button-qr svg {
	position: absolute;
	left: 0.625rem;
	top: 0.625rem;
	fill: #fff;
	width: 1.75rem;
	height: 1.75rem;
	opacity: .75;
	transition: opacity .25s, transform .25s;
}

.cover-box:not(.flip) .button-qr .icon-x {
	opacity: 0;
	transform: rotate(-180deg);
}
.cover-box.flip .button-qr .icon-qr {
	opacity: 0;
	transform: rotate(180deg);
}

@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: 25rem;
	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;
	animation: link-slide .33s ease-out forwards;
	box-shadow: 0 .33rem 1rem rgba(0, 0, 0, .25);
	overflow: hidden;
}

.links a, button {
	background: radial-gradient(circle at bottom, rgba(31,31,31,.75), rgba(0,0,0,.75));
	color: #fff;
	box-shadow: 0 0 .125rem .125rem rgba(255,255,255,.33) inset, 0 2.25rem .33rem -2rem rgba(255,255,255,.33) inset, 0 -2.5rem 1rem -2rem rgba(255,255,255,.125) inset, 0 .5rem 1rem -.25rem rgba(255,255,255,.1);
	border: none;
	transition: scale .1s, box-shadow .2s, right .5s;
}

.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(-1.5rem);
		opacity: 0;
	}
	67% {
		filter: none;
		transform: translateY(.33rem);
		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) center;
	background-size: 150% 150%;
	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: .75rem;
	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);
}

@media (max-width: 67rem) {
	.button-qr svg {
		transition: opacity .5s, transform .5s;
	}
	.cover-box.flip .button-qr {
		right: -2.5rem;
	}
}

@media (max-width: 50rem) {
	.outer {
		flex-direction: column;
	}
	.outer .a {
		padding: 1.5rem 0 1rem 0;
		min-height: initial;
		flex: none;
		background: none;
	}
	.cover-box {
		width: 50%;
		max-width: 15rem;
	}
	.cover-box.flip {
		width: 70%;
		max-width: 20rem;
	}
	.cover, .qr {
		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, button:hover {
		box-shadow: 0 0 .125rem .125rem rgba(255,255,255,.67) inset, 0 2.25rem .33rem -2rem rgba(255,255,255,.33) inset, 0 -2.5rem 1rem -2rem rgba(255,255,255,.125) inset, 0 .5rem 1rem -.25rem rgba(255,255,255,.1);
	}
	.links a:hover {
		scale: 1.05;
	}
	.button-qr:hover svg {
		opacity: 1;
	}
}

.links a:focus-visible, button:focus-visible {
	box-shadow: 0 0 .125rem .125rem rgba(255,255,255,.67) inset, 0 2.25rem .33rem -2rem rgba(255,255,255,.33) inset, 0 -2.5rem 1rem -2rem rgba(255,255,255,.125) inset, 0 .5rem 1rem -.25rem rgba(255,255,255,.1);
}
.links a:focus-visible {
	scale: 1.05;
}
.button-qr:focus-visible svg {
	opacity: 1;
}
	
.links a:active, button:active {
	scale: .9;
}
	
.links a:active {
	scale: .975;
}