/* Base modifications
   This section contains modifications to standard HTML elements
*/

body {
    background-color: #3a4750;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: #f6c90e
}

a:hover {
    color: #eeeeee
}

p {
    color: #eeeeee;
}


/* ===== Header Elements ===== */

.header {
    background-color: #3a4750;
    color: #f6c90e;
    text-align: center;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.pagetitle {
    font-size: 3em;
}

.pagesubtitle {
    font-size: 1em;
    display: block;
}


/* The navbar container */

.topnav {
    overflow: hidden;
    background-color: #303841;
}


/* Navbar links */

.topnav a {
    float: left;
    display: block;
    color: #eeeeee;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}


/* Links - change color on hover */

.topnav a:hover {
    background-color: #ddd;
    color: black;
}


/* Create three equal columns that floats next to each other */

.column {
    float: left;
    width: 33.33%;
    color: #eeeeee;
}


/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}


/* Responsive layout - makes the three columns stack on top of each other instead of next to each other on smaller screens (600px wide or less) */

@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}