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

/* Body beskrivelse */
body {
	background-color: white; 
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif"; 
	font-size: 18px;
	color: black;

}

/* Page beskrivelse */
.page {
	background-color: aliceblue;
	padding: 40px;
	margin: auto;
	width: 70%;	
}

/* Pagetitle beskrivelse */
.pagetitle { 
}

/* Header beskrivelse */
.header {
	background-color: white;
	font-size: 20px;
	font-weight:  900;
	padding-left: 5px;
}

/* Container beskrivelse */
.container {
	padding: 10px;
	margin: 10px;
}

/* Main beskrivelse */
.main {
	background-color: white;
}

/* Footer beskrivelse */
.footer {
	background-color: white;
	padding:  20px;
	text-decoration: none;
	font-style: italic;
	text-align: center;
} 

/* Media beskrivelse */
@media screen and (max-width: 500px) {
  .main {
    width: 500px;
  }
}

/* Links beskrivelse */

a:link {
	color: orange;
}
a:visited {
	color: orange;
}
a:hover {
	color: chocolate;
}
a:active {
	color: orange;
} 