#FocusHover {
	font-family: "Benguiat Book", serif;
	position: relative;
	width: 100%;
	height: calc(100vh - 40px);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
#FocusHover h2 {
	position: relative;
	color: #fff;
	font-size: 3em;
	font-weight: 400;
	z-index: 2;
	transition: 2s;
	cursor: default;
	-webkit-user-select: none;
	user-select: none;
}
#FocusHover h2:hover {
	filter: blur(10px);
	transform: scale(1.2);
}
#FocusHover .image {
	position: absolute;
	width: 140%;
	height: 140%;
	background: url("NieR01.jpg");
	background-size: cover;
	background-position: center;
	filter: blur(20px);
	transition: 2s;
}
#FocusHover h2:hover ~ .image {
	width: 100%;
	height: 100%;
	filter: blur(0);
}

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