html {
	scrollbar-width: none;
}

body::-webkit-scrollbar {
	display: none;
}

body {
	margin: 0;
	background: #eee;
}

#fs {
	width: 1em;
	height: 1em;
	display: inline-block;
	position: fixed;
	top: 0;
	right: 0;
	margin: 1em;
	border-top: 2px solid #aaa;
	border-right: 2px solid #aaa;
	cursor: pointer;
	transition: opacity 0.3s ease, transform 0.3s ease, border 0.3s ease;
	animation: showbtn 1s ease 1s both;
}

#fs.hide:not(:hover) {
	opacity: 0;
}

@keyframes showbtn {
	from {
		opacity: 0;
	}
}

#fs:hover {
	border-top: 2px solid #111;
	border-right: 2px solid #111;
	transform: scale(1.1);
}

:-webkit-full-screen #fs {
	display: none;
}

:fullscreen #fs {
	display: none;
}

button.share {
	-webkit-user-select: none;
	user-select: none;
	margin: 2em auto;
	display: flex;
	border-radius: 0;
	border: none;
	background: none;
	text-transform: uppercase;
	font-size: 0.8em;
	-webkit-tap-highlight-color: transparent;
	cursor: pointer;
}
/*
#returns svg g{
	animation: hello 0.5s ease 0s both;
}

@keyframes hello {
	from {
		opacity: 0;
	}
}
*/

#returns {
	height: 100vh;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

#returns svg {
	width: 100%;
	height: 100%;
}


#returns svg polygon {
	transition: fill var(--d) ease;
}

#grid {
	display: grid;
	background: #eee;
	grid-gap: 2em;
	padding: 20vh 3em;
	grid-template-columns: repeat(auto-fit, minmax(10em, 1fr));
}

@media (max-width: 30em) {
	#grid {
		grid-gap: 1em;
		padding: 20vh 1em;
		grid-template-columns: repeat(auto-fit, minmax(7em, 1fr));
	}
}

#grid:not(.show) {
	display: none;
}

#grid svg {
	max-width: 100%;
	max-height: 100%;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
