body {
    margin: 0;
    padding: 0;
    background-color: #f5f5ef !important;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    color: #572a17;
}

tr {
    font-family: Arial, Helvetica, sans-serif;
    color: #572a17;
}

i {
    font-family: Arial, Helvetica, sans-serif;
    color: #572a17;
}

h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: #572a17;
}

h2 {
    font-family: Arial, Helvetica, sans-serif !important;
    color: #572a17 !important;
}

.logo {
    float: left; /* logo at the left of the page */
}

/* Three columns side by side */
.column {
    float: left;
    width: 22.2%;
    margin-bottom: 16px;
    padding: 0 8px;
    word-break: break-all
}


/* Add some shadows to create a card effect */
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Some left and right padding inside the container */
.container {
    padding: 0 8px;
}

    /* Clear floats */
    .container::after, .row::after {
        content: "";
        clear: both;
        display: table;
    }

.title {
    color: grey;
}

.button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

    .button:hover {
        background-color: #555;
    }
/* ~~ Top Navigation Bar ~~ */

@media screen and (min-width: 768px) {
    #navigation-container {
        width: 62.5vw;
        margin: 0 auto;
        height: 7vh;
    }
}

.navigation-bar {
    background-color: #f5f5ef;
    height: 70px;
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .navigation-bar img {
        float: left;
    }
}

.navigation-bar ul {
    padding: 0px;
    margin: 0px;
    text-align: center; /* makes a list of buttons, without this the buttons wont work. VERY IMPORTANT!! */
    display: inline-block;
    vertical-align: top;
}

.navigation-bar li {
    list-style-type: none;
    padding: 0px;
    height: 24vh; /* buttons */
    margin-top: 4px;
    margin-bottom: 4px;
    display: inline;
}

    .navigation-bar li a {
        color: #572a17;
        font-size: 16px;
        font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; /* for the active button */
        text-decoration: none;
        line-height: 70px;
        padding: 5px 15px;
        opacity: 0.7;
    }

        .navigation-bar li a:hover:not(.active) {
            background-color: #7b7b78;
            color: white;
        }

.active {
    background-color: #c5c5c1;
    color: #c31e00 !important; /* these two lines are active colours, so if you're on the homepage then the home button will be highlighted. */
}

#menu {
    float: right;
}