/*** LAYOUT ***/
* {
    box-sizing: border-box;
}

/* Create two columns that float next to each other */
.content {
    float: left;
    width: 70%;
    padding: 10px;
}
.navigation {
    float: left;
    width: 30%;
    padding: 10px;
	padding-top: 4em;
	/* background-color: blue; */
}
.row {width:90%; margin:0 auto;}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
.footer {width:90%; 
	margin:0 auto;
	padding: 10px;
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other on reaching certain width */
@media screen and (max-width: 600px) {
    .content {
        width: 100%;
    }
	.navigation {
        width: 100%;
    }
}
/*** REST ***/
body {
  font-family: Verdana, Geneva, Arial, helvetica, sans-serif;
}

h1 {
	font-size:1.5em;
}

h2 {
	font-size:1.2em;
}

ul {
    list-style-type: none;
}

a:link {
    color: #cc3300;
}
a:visited {
    color:#660000;
}
a:hover {
    color:hotpink;
}
a:active {
    color: #ff3333;
}