/*Set general margin and paddings and set the body*/
* {
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*Banner*/
h1 a{
    color: white;
    text-decoration: none;
}

nav {
    width: 25vmin;
    float: right;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}

.navImg {
    width: 7vmin;
    margin: 0 20px;
    align-items: center;
}

#selected {
    border: #BB9457 3px solid;
    border-style: dashed;
}

header {
    background-color: #432818;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*Main*/
h2 {
    padding-left: 10px;
}

ul {
    padding-left: 30px;
    padding-bottom: 20px;
}

/*Bottom of the page*/
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background-color: #432818;
    color: white;
}

@media (max-width: 800px) {
    main {
        min-height: 300vmax;
    }

    nav {
        width: 35vmin;
    }

    .navImg {
        width: 10vmin;
        margin: 0 15px;
        position: relative;
        right: 50px;
    }

    header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 1;
    }
}