#FocusBlur {
	font-family: "Benguiat Book", serif;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100vh - 40px);
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("NieR02.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	overflow: hidden;
}
#FocusBlur .box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("NieR02.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
#FocusBlur .box:nth-child(1) {
	filter: blur(10px);
}
#FocusBlur .box:nth-child(2) {
	clip-path: circle(200px at var(--x) var(--y));
}
#FocusBlur .box h2 {
	position: absolute;
	color: #fff;
	font-size: 3em;
	font-weight: 400;
	transform: translate(0, 0);
	transform: translate(calc(var(--x) / 25), calc(var(--y) / 25));
}
#FocusBlur .circle {
	position: absolute;
	top: -200px;
	left: -200px;
	width: 400px;
	height: 400px;
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 5px 25px rgb(0 0 0 / 25%);
	transform: translate(var(--x), var(--y));
}

/* sm */
@media (min-width: 576px) { #FocusBlur .box h2 { font-size: 5em; } }
/* md */
@media (min-width: 768px) { #FocusBlur .box h2 { font-size: 6.5em; } }
/* lg */
@media (min-width: 992px) { #FocusBlur .box h2 { font-size: 7.5em; } }
/* xl */
@media (min-width: 1200px) { #FocusBlur .box h2 { font-size: 8.5em; } }
/* xxl */
@media (min-width: 1400px) { #FocusBlur .box h2 { font-size: 10em; } }
