html {
    background-color: #f8e4a7;
    font-family: 'Century Gothic', 'Trebuchet MS', Arial, Calibri, Helvetica, Courier New, Courier;
}

body {
    background: url(images/DaVito_menu.jpg) no-repeat fixed;
    background-position: right;
    background-size: cover;
    margin: auto;
}

.container {
    display: flex;
    flex-wrap: wrap;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

/*Navigation*/
ul#navigation {
    list-style-type: none;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 43px;
    background-color: rgb(96, 69, 52);
    border-bottom: 2px solid rgb(63, 45, 34);
    overflow: hidden;
    z-index: 1;
}

#navigation li {
    float: left;
}

#navigation li a {
    display: block;
    text-align: center;
    font-size: larger;
    padding: 10px 20px;
    color: #f8e4a7;
    text-decoration: none;
}

#navigation li a:hover,
.dropdown:hover {
    background-color: rgb(63, 45, 34);
}

/* Main content*/

#main_content {
    color: rgb(96, 69, 52);
    padding-left: 10%;
    margin-top: 45px;
}

#main_content li {
    padding: 5px 0px;
}

#main_content ul li {
    list-style-type: none;
}

.spacer {
    height: 30px;
}

/* Footer style*/
#footer {
    display: flex;
    font-size: 15px;
    color: #f8e4a7;
    background-color: rgb(96, 69, 52);
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
}

#footer #links div {
    text-align: left;
    padding: 5px 0 5px 15px;
}

#footer #socialmedia div {
    text-align: right;
    padding: 5px 15px 5px 0px;
}

#footer a {
    color: #f8e4a7;
    text-decoration: none;
}

@media only screen and (max-width: 620px) {
    body{
        background: none;
    }

    .col-1 {
        width: 100%;
    }
    .col-2 {
        width: 100%;
    }
    .col-3 {
        width: 100%;
    }
    .col-4 {
        width: 100%;
    }
    .col-5 {
        width: 100%;
    }
    .col-6 {
        width: 50%;
    }
    .col-7 {
        width: 100%;
    }
    .col-8 {
        width: 100%;
    }
    .col-9 {
        width: 100%;
    }

    #navigation li a {
        padding: 10px 10px;
    }

    #textbox {
        padding: 10px 20px 10px 20px;
    }

    p.introduction {
        padding: 10px 20px 10px 20px;
    }
}