
body {
    overflow-y: auto;
    background-image: linear-gradient(to right top, #865e30, #dcc3909a, #d8ccc027),
                        url(../img/background.jpg);
}
.menu {
    width: 60%;
    margin: 10px auto;
}
h2 {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-style: italic;
    font-weight: bold;
    font-size: 26px;
}
img.menu-img {
    width: 100%;
    border: 5px groove #865e3092;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
main {
    width: 90%;
}
.decor ,
.eat{
    width: 80%;
    margin: 10px auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 10px;
}
.decor h2 {
    width: 100%;
}
img.dec ,
img.food{
    margin: 10px;
    filter: blur(2px);
    width: 40%px;
    height: 200px;
    border: 4px double transparent ;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-filter: blur(2px);
    transition: .05s;
    -webkit-transition: .05s;
    -moz-transition: .05s;
    -ms-transition: .05s;
    -o-transition: .05s;
}
img.dec:hover ,
img.food:hover{
    filter: blur(0px);
    -webkit-filter: blur(0px);
    border-color: #865e30;
}
.space {
    width: 100%;
    height: 40px;
}
