:root {
	--imgsize: 60dvh;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	user-select: none !important;
	-webkit-user-select: none !important;
	-webkit-touch-callout: none !important;
}
html {
	font-size: 12px;
}
body {
	font-family: limkin, serif;
	background-color: black;
	color: white;
}
.content {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}
.walk-steps {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	pointer-events: none;
	transition: transform .2s;
}
.walk-steps-child {
	transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), filter .4s, opacity .2s;
	position: absolute;
	width: 0;
	height: 0;
}
.walk-steps-child-img {
	height: var(--imgsize);
	box-shadow: 0 0 10px rgba(0,0,0,.5);
}