body {
    background-color: #728C77;
    font-family: 'Lato', sans-serif
}

/* For big devices, show header over the picture */
@media screen and (min-width: 501px) {
    #header {
        width: 100%;
        position: relative;
        background-color: white;
        margin-top: 0px;
    }

    #header div {
        position: absolute;
        width: 100%;
    }

    #title {
        text-align: center;
        font-size: 4em;
        font-family: 'Lato', serif;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/* For smaller devices, show picture below the header */
@media screen and (max-width: 500px) {
    #header {
        width: 100%;
        background-color: white;
        margin-top: 0px;
        margin-right: 1em;
        z-index: 100;
    }

    #title {
        text-align: center;
        font-size: 2em;
        font-family: 'Lato', serif;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

#body {
    position: relative;
    background-color: white;
    padding: 1em;
    font-family: 'Lato', sans-serif;
}

#body a {
    color: #00e;
}

#body a:hover {
    color: white;
    background-color: #00e;
}

#body h2 {
    padding-top: 10px;
    border-top: 4px solid #ddd;
}

#body h2:first-child {
    border-top: none;
}

.picture {
    width: 100%;
}

div.navbar {
    text-align: center;
}

a.navigation {
    display: inline-block;
    margin: 0px;
    padding: 10px;
    color: #222;
    text-decoration: none;
}

a.navigation:hover {
    display: inline-block;
    padding: 10px;
    color: black;
    background-color: white;
}