

div {
	position:absolute;
	top:-150px;
	z-index:2;
	font-family:Helvetica, Arial, sans-serif;
	font-size:70%;
	width:90%;
	height:90px;
	padding:0.5em;
	margin:0.5em;
	color:#fff;
	text-decoration:none;
	background:#528f4a;
	border-radius:5px;
	animation-name: drop;
	animation-duration: 2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;

}

a {text-decoration:none;}

h1 {
	color:#F7F4E7;
	text-shadow:1px 1px 3px #000;
	width:100%;
	line-height:15px;
	font-size:1.8em;
	text-align:center;
}
h2 {
	background:#95c7f3;
	color:#000;
	width:100%;
	font-weight:normal;
	border-bottom-right-radius:5px;
	line-height:30px;
	text-align:center;
	font-size:1.4em;
}

img {
	position:absolute;
	top:5px;
	z-index:2;
	width:auto;
	height:90px;
	box-shadow: 0 0px 18px 0 rgba(0, 0, 0, 0.5)
}


@keyframes drop {
	0% {transform:translateY(0)}
	70% {transform:translateY(250px)}
	80% {transform:translateY(210px)}
	80% {transform:translateY(240px)}
	100%{transform:translateY(260px);}
}


@media only screen and (max-width: 1080px)

{

div {
		margin:0;
	}

	
 img {
		display:none;

	}

}
