* {
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    background-image: url("BACKGRND/WB02035_.GIF.png");
}

.wrapper {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 95%;
    max-width: 1200px;
    height: 95%;
    max-height: 900px;
}

.header {
    height: 80px;
    line-height: 80px;
    font-size: 33px;
    color: #FFFFFF;
    width: 100%;
}

.header,
.footer {
    background-color: #666698;
    width: 100%;
    flex-shrink: 0;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex: 1;
}

.page {
    background-color: #FFFFCB;
    flex: 1;
}

.menu {
    background-color: steelblue;
    width: 300px;
    background-image: url("BACKGRND/WB02114_.GIF.png");
}

.bounce {
    overflow: hidden;
    position: relative;
}
.bounce span {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: left;
    /* Apply animation to this element */	
    -moz-animation: bounce 5s linear infinite alternate;
    -webkit-animation: bounce 5s linear infinite alternate;
    animation: bounce 5s linear infinite alternate;
}
/* Move it (define the animation) */
@-moz-keyframes bounce {
    0%   { -moz-transform: translateX(50%); }
    100% { -moz-transform: translateX(0%); }
}
@-webkit-keyframes bounce {
    0%   { -webkit-transform: translateX(50%); }
    100% { -webkit-transform: translateX(0%); }
}
@keyframes bounce {
    0%   {  
        -moz-transform: translateX(50%); /* Firefox bug fix */
        -webkit-transform: translateX(50%); /* Firefox bug fix */
        transform: translateX(50%); 		
    }
    100% { 
        -moz-transform: translateX(0%); /* Firefox bug fix */
        -webkit-transform: translateX(0%); /* Firefox bug fix */
        transform: translateX(0%); 
    }
}

.page {
    overflow-y: scroll;
    padding: 1em;
}

.menu ul {
    list-style: none;
    padding-left: 40px;
}

.menu ul li {
    position: relative;
    padding: 1em;
    background-color: firebrick;
    color: #FFF;
    margin: 1em;
}

.menu ul li:hover {
    background-color: white;
    color: firebrick;
    border: 3px solid firebrick;
    cursor: pointer;
}

.menu a {
    text-decoration: none;
    color: inherit;
}

.menu ul li>img {
    display: none;
    position: absolute;
    left: -50px;
}
.menu ul li.active>img {
    display: block;
}

.footer {
    color: #FFF;
    text-align: right;
    font-size: small;
}

.radiotable {
    list-style: none;
    margin: 0;
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.radiotable a {
    width: 25%;
    text-decoration: none;
    color: inherit;
}

.radiotable li {
    margin: 0.2em;
    border-style: groove;
    flex: 1;
    text-align: center;
}

.lunch h1 {
    font-size: 100%;
}


.lunch {
    display: flex;
    flex-wrap: wrap;
}

.lunch > * {
    flex: 0 0 50%;
}

.lunch > div {
    padding: 1em;
}

.lunch > div span {
    margin-bottom: 0.5em;
}

.lunch > div .meat {
    display: block;
    margin-bottom: 0.5em;
}

.lunch > div img {
    height: 16px;
    width: 16px;
    margin-left: -20px;
    margin-right: 4px;
    display: inline;
}