.Shadows {
	float: left;
	z-index: -999;
}

.btnShadow {
	width:200px;
	height: 8px;
	filter: blur(12px);
	background: rgba(100, 100, 100, .75);
	margin-top:32px;
	animation: AnimShadow 10s ease 0s infinite normal none;
	z-index: -100;
	
}

.menuItem {
	float: left;
	padding: 20px;
	margin: 50px;
	height: 300px;
	--background: pink;

}

.btn {
	animation: AnimBounce 10s ease 0s infinite normal none;
	position:relative;
	z-index: 10;
}
.logo {
	border-radius: 15px;
	transition: filter 1s;
	z-index: 100;
}

.logo:hover {
	filter: saturate(64%);
}

#centerion {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -340px;
  --background: red;
}

.bg {
    width: 100%;
    height: 100%;
    background-image: url(200.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	background-position: bottom;
}

body, html {
  height: 100%;
  margin: 0;
}

@keyframes AnimBounce {
	0%,
	100% {
		transform: translateY(0);
	}

	10%,
	35%,
	70% {
		transform: translateY(4px);
	}

	20%,
	55% {
		transform: translateY(-4px);
	}

	80% {
		transform: translateY(-2.5px);
	}

	90% {
		transform: translateY(2.5px);
	}
}

@keyframes AnimShadow {
	0%,
	100% {
		transform: scale(1.15) ;
	}

	10%,
	35%,
	70% {
		transform: scale(1.18);
	}

	20%,
	55% {
		transform: scale(1.12);
	}

	80% {
		transform: scale(1.165);
	}

	90% {
		transform: scale(1.135);
	}
}