@charset "UTF-8";

#sticky-announce {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 2.5rem;
	background-color: green;
	transition: .1s ease all;
}

#sticky-announce:hover {
	opacity: .8;
}

#sticky-announce a {
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 1.5rem;
	padding: .5rem;
	font-family: "Aleo","Arial";
	color: white;
	text-decoration: none;
}

#sticky-announce a:hover {
	color: white;
}

@media screen and (min-width: 1400px) {

	#sticky-announce a {
		font-stretch: 2.5rem;
		padding: .5rem;
	}
}