html,
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-family: "Arial", sans-serif;
	color: dimgrey;
	background-color: white;
	
	height: 100%;
}

.cheer {
	animation-name: cheerAnimation;
	animation-duration: 1s;
}

@keyframes cheerAnimation {
	0% {background-color: white;}
	50% {background-color: gold;}
	100% {background-color: white;}

}

#box {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	text-align: center;
}

#box h1 {
	font-size: 1.5em;
	margin-bottom: 0.5em;
	padding: 0;
}

button {
	background: silver;
	border-radius: 5px;
	padding: 1em;
	width: 250px;
	border: none;
	outline-color: white;
	margin-bottom: 1em;
	cursor: pointer;
	
	transition: all 0.2s ease;
	transition-property: background-color, color, width;
}
button:hover {
	background-color: grey;
	color: white;
	width: 275px;
}
button:focus {
	outline:none;
}

footer {
	position: fixed;
	left: 1px;
	bottom: 1px;
	color: white;
}

#at-expanding-share-button {
	transition: opacity 1s ease;
	opacity: 0;
}

.footerWidgets {
	opacity: 0;
	margin: 0;
	padding: 0;
	/*transition: opacity 1s ease;*/
}

.footerWidgets li {
	display: block;
	margin-bottom: 5px;
	margin-left: 0;
	padding-left: 0;

}

.coffeeButton {
	width: 150px;
	height: auto;
}
