@charset "UTF-8";
/* CSS Document */

body {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	font-size: 18px;
}

a:link {
	color:darkred;
	text-decoration: none;
}

a:visited{
	color:darkred;
	text-decoration: none;
}

a:hover{
	color: orange;
	text-decoration: none;
}

a:active{
	color: orange;
	text-decoration: none;
}

p.centered{
	text-align: center;
}

.boldtype{
	font-size: 25px;
}

main {
	width: 80%;
	min-width: 700px;
	border: 1px solid gray;
	height: 1500px;
	margin: 0 auto;
	padding: 20px;
}

header {
	width: 100%;
	height: 125px;
	background-color:rgba(207,236,239,1.00);
}

.logo {
    width: 80px;
    height: 80px;
    float: left;
    border-radius: 50%;
    background-color: black;
    margin: 15px;
	transition: all .3s ease-in-out;
}
.logo:hover {
	transform: scale(1.1);
}

nav {
	width: 320px;
	float: right;
	border-top: 4px solid gray;
}

.navitem {
	float: left;
	padding: 0px 10px;
	margin-top: 5px;
}

.navitem a {
	display: block;
	transition: all .3s ease-in-out;
}

.navitem a:link {
	color:lightslategray;
	text-decoration: none;
}

.navitem a:visited {
	color:lightslategray;
	text-decoration: none;
}

.navitem a:hover {
	color: darkorange;
	text-decoration: none;
	padding-top: 4px;
}

.navitem a:active {
	color: darkred;
}



