/* BODY */
body {
    font-family: Verdana, "Lucida Sans", Arial, sans-serif; 
    font-size: 100%; 
    color: black; 
    background-color: lightblue; 
}
* { box-sizing: border-box; }

/* HEADER  */
.head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    padding: 8px; 
    color: white; 
    background-color: #9933cc;
    text-align: center; 
    z-index: 3;
}

/* MENU */
.menu {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    max-height: 90vh;
    overflow: auto;
}
@media screen and (min-width: 600px) {.menu{left: 10%; width: 80%}}
@media screen and (min-width: 900px) {.menu{left: 20%; width: 60%}}
@media screen and (min-width: 1200px) {.menu{left: 30%; width: 40%}}
@media screen and (min-width: 1500px) {.menu{left: 40%; width: 20%}}

.menu div {
    padding: 16px; 
    background-color: #33b5e5; 
    color: black; 
    border: solid 2px grey;
    border-radius: 5px; 
    padding: 4px;
}
.menu a {
    display: block;
    width: 100%;
}
.menu div:hover {background-color: #0099cc; }

