/*** Basic ***/
html {
	margin: 0;
	height: 100%;
}

body {
	font-family: Verdana, serif;
	font-size: 16px;
	background: rgb(255, 255, 204); /* Old browsers */
	background: -moz-linear-gradient(135deg, rgba(255, 255, 204, 1) 0%, rgba(204, 255, 204, 1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(255, 255, 204, 1)), color-stop(100%, rgba(204, 255, 204, 1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(135deg, rgba(255, 255, 204, 1) 0%, rgba(204, 255, 204, 1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(135deg, rgba(255, 255, 204, 1) 0%, rgba(204, 255, 204, 1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(135deg, rgba(255, 255, 204, 1) 0%, rgba(204, 255, 204, 1) 100%); /* IE10+ */
	background: linear-gradient(135deg, rgba(255, 255, 204, 1) 0%, rgba(204, 255, 204, 1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffcc', endColorstr='#ccffcc', GradientType=1); /* IE6-8 fallback on horizontal gradient */
	background-attachment: fixed;
	padding-top: 40px;
	padding-bottom: 60px;
}

.site-title {
	font-size: 48px;
}

.site-menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
	width: 100%;
	top: 0;
	position: fixed;
}

.site-menu li {
	float: left;
	font-size: 24px;
}

.site-menu li:last-child {
	float: right;
}

.site-menu li a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.site-menu li a:hover:not(.active) {
	background-color: #111;
}

.site-menu .active {
	background-color: #4CAF50;
}

.action-button {
	background-color: #333;
	border: none;
	color: white;
	padding: 14px 16px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	font-size: 24px;
}

.action-button:hover:not(.active) {
	background-color: #111;
}

.site-footer ul {
	list-style-type: none;
	text-align: center;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
	width: 100%;
	bottom: 0;
	position: sticky;
}

.site-footer li {
	display: inline-block;
	font-size: 32px;
}

.site-footer li a {
	display: block;
	color: white;
	text-align: center;
	padding: 7px 24px;
	text-decoration: none;
}
/*** Fim Basic ***/

/*** Inicio Media Queries para Celular ***/
@media ( max-width : 780px) , ( orientation : portrait) {
	.site-footer li a {
		padding: 7px 10px;
	}
}
/*** Fim Media Queries para Celular ***/