* {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	font-family: sans-serif;
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
}

.container {
	overflow: hidden;
	position: relative;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
}

.alf-background {
	background: url('alf.jpg') no-repeat;
	background-position: bottom;
	background-size: cover;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	filter: blur(13px);
	transform: scale(1.10);
	opacity: .5;
}

.alf-image {
	display: block;
	z-index: 2;
	max-height: 70%;
	max-width: 100%;
	padding: 20px;
}

