body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #E6E6E6;
	background-image: url("pictures/dots.png");
	background-repeat: no-repeat;
	background-position: 95% 220px;
	background-size:  25%;
	margin: 0;
	margin-bottom: 5%;
}
@keyframes title {
	50% {
		color: #075C0011;
	}
}
header {
	background-image: linear-gradient(180deg, #0AAD00 0%, rgba(208,255,208,1) 100%);
	height: 160px;
	text-align: center;
	font-weight: bold;
	font-size: large;
	border-bottom: 3px solid black;
	box-shadow: 0 3px 3px rgba(208,255,208,1);
	position: relative;
    top: 0;
	width: 100%;
}
header p {
	color: #000;
	animation-name: title;
	animation-duration: 5s;
}
h1 {
	color: #075C00;
	font-weight: bold;
	margin: 0;
	padding-top: 30px;
	text-align: center;
	font-size: xxx-large;
	animation-name: title;
	animation-duration: 5s;
}
h2 {
	font-size: large;
}
h3 {
	font-size: medium;
}
nav {
	background-image: linear-gradient(180deg, rgba(208,255,208,1) 0%, rgba(230,230,230,0) 100%);
	height: 30px;
	text-align: center;
	font-weight: bold;
	font-size: x-large;
	top: 0;
	position: sticky;
	width: 100%;
}
nav a {
	color: #008000;
	padding: 0 1%;
	text-decoration: none;
}
nav a:hover {
	color: black;
}
section {
	padding-top: 30px;
	padding-bottom: 0;
	padding-left: 20%;
	padding-right: 20%;
	text-align: justify;
}
a:link {
	color: #086D00;
}
a:hover {
	text-decoration: none;
}
a:active {
	color: black;
}
aside {
	padding-left: 1em;
}
p {
	padding-left: 1em;
}
ol li {
	font-weight: bold;
}
ul {
	padding-top: 1em;
	padding-bottom: 1em;
}
ul li {
	font-weight: normal;
	padding-left: 1em;
}
footer {
	position: fixed;
    bottom: 0;
	background: linear-gradient(180deg, rgba(230,230,230,1) 0%, rgba(102,102,102,1) 100%);
	text-align: center;
	font-size: 1em;
	width: 100%;
}