body {
	background: #FF5F2D;
	height: 650px;
}

.ghost {
	user-select: none;
	position: absolute;

	top: 400px;
	left: 800px;

    animation: ghost 2s infinite ease-in-out backwards;
}

@keyframes ghost {
	0% {
		top: 400px;
	} 50% {
		top: 340px;
	} 100% {
		top: 400px;
	}
}

.title {
	position:absolute;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: 90px;

	left: 600px;
}
.title::selection {
	color: #FF5F2D;
	background: #fff;
}