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;
    justify-content: center;
}

.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: right;
}

#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);
}

/*Information Block*/
#info {
    color: #f8e4a7;
    background-image: url(images/pexels-fariphotography-905847.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgb(96, 69, 52);
    height: fit-content;
    margin-top: 45px;
}

#info ul {
    list-style-type: none;
    display: block;
    padding: 60px 15px;
    margin: 0;
}

#info li {
    font-size: 20px;
    color: #f8e4a7;
    text-shadow: 3px 3px 3px rgb(41, 29, 22);
}

#info .info-headline {
    font-size: x-large;
    font-weight: bold;
    color: #f8e4a7;
    text-shadow: 3px 3px 3px rgb(41, 29, 22);
    margin: 10px 0 10px;
}

#info a {
    color: #f8e4a7;
    text-decoration: none;
}

#info a:hover,
a:active {
    color: #d1c08d;
}

/*Text box*/
#textbox {
    color: #f8e4a7;
    text-shadow: 2px 2px 2px rgb(41, 29, 22);
    background-color: rgb(96, 69, 52);
    border-top: 2px solid rgb(63, 45, 34);
    border-bottom: 2px solid rgb(63, 45, 34);
    padding: 10px 20px;
}

#textbox a {
    color: #f8e4a7;
}

/*Menu and webhooks*/
#menu h1 {
    color: rgb(96, 69, 52);
    margin: 10px 30px;
}

.introduction{
    margin: 20px 0px
}

table {
    margin: auto;
    width: 90%;
    border-collapse: collapse;
}

tr,
th,
td {
    font-size: large;
    padding: 10px 4px;
    border-bottom: solid 2px rgb(96, 69, 52);
    color: rgb(96, 69, 52);
}

td p {
    font-style: italic;
    font-size: x-small;
    margin: 0;
}

th.price,
td.price {
    text-align: center;
    color: #f8e4a7;
    background-color: rgb(96, 69, 52);
    border-bottom: solid 2px#f8e4a7;
}

th a {
    color: rgb(96, 69, 52);
}

.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;
    }
}