html,
body {
	margin: 0;
	height: 100%;
	overflow: hidden;
	background: #000;
	touch-action: none;
}

div {
	position: absolute;
	opacity: 0.85;
	transform: translate(0, 0) scale(0) rotate(0);
	animation: blow-away linear 700ms var(--i) forwards;
}

@keyframes blow-away {
	10% {
		transform: translate(0, 0) scale(1) rotate(0);
	}
	100% {
		transform: translate(var(--shiftX), var(--shiftY)) scale(0) rotate(1turn);
	}
}
