/**
 * Styles for Genesis Background Featured Image Effects.
 */

html {
	height: 100%;
}

body {
	height: 100%;
	overflow: auto;
}

.site-container {
	background: none;
}

.genesis-bg-featured-img-fx {
	background-attachment: fixed;
	background-size: cover;
	-webkit-filter: blur(10px);
    filter: blur(10px);
	height: 100%;
	position: fixed;
	-ms-transform:  scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	width: 100%;
	z-index: -99;
}