body {
	height: 100vh;
	margin: 0;
	display: grid;
    cursor: pointer;
    background: linear-gradient(#345, rgb(30,31,38));
	place-items: center;
}
svg {
	height: 400px;
	width: 400px;
	position: absolute;
}
small {
	padding: 20px;
	color: #ddd;
	font-family: monospace;
	text-align: center;
	position: relative;
	user-select: none;
	pointer-events: none;
}
.c {
	animation: 2s up linear 1;
	animation-fill-mode: forwards;
}
@keyframes up {
  from {transform: translate(-50%, -50%);}
  to {transform: translate(-50%, -220%);}
}