* {
	margin : 0;
	padding : 0;
}

body {
	background-color : #3515B0;
	color : White;
}

header {
	background-color : #856FD7;
	clear : left;
	width : 100%;
	display : block;
	text-align : center;
}

aside {
	text-align : right;
}

footer {
	background-color : #FFD100;
	color : black;
	clear : both;
	width : 100%;
	display : block;
	text-align : left;
}

/* CSS kod för hyperlänkar med färg och egenskaper */
a:link {
	color: #FFDC40;;
	text-decoration: none;
}

a:visited {
	color: #FFDC40;
	text-decoration: none;
}

a:hover {
	color: white;
	text-decoration: underline;
}

a:active {
	color: red;
	text-decoration: underline;
}