html,
body {
	min-height: 100%;
	min-width: 100%;
	height: 100%;
}

body {
	background: url('../../assets/img/LP9_BG.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
}

div.center-middle {
	height: 40vh;
}

img {
	width: 200px;
	margin: 0 auto;
	transition: transform 0.2s;
	position: relative;
	top: 0%;
}

div.inner {
	max-width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 13%;

	transform: translate(-50%, -50%);
	-webkit-animation-name: glow;
	-webkit-animation-duration: 0.4s;
	animation-name: glow;
	animation-duration: 0.4s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	position: relative;
	top: 0px;
}

img:hover {
	transform: scale(1.1);
}

@-webkit-keyframes glow {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.03);
	}
}

@keyframes glow {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.03);
	}
}

@media only screen and (max-width: 900px) and (orientation: landscape) {
	img {
		width: 150px;
		margin: 0 auto;
		transition: transform 0.2s;
		position: relative;
		top: -200%;
	}

	div.inner {
		position: relative;
		top: 250px;
	}
}

@media only screen and (max-width: 480px) {
	body {
		background: url('../../assets/img/LP9_BGmob.png') no-repeat;
		background-size: cover;
		background-position: top;
	}

	img {
		width: 200px;
		margin: 0 auto;
		transition: transform 0.2s;
		position: relative;
		top: 11%;
	}

	div.inner {
		position: relative;
	}
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}