* {
    font-size:15px;
}
html, body {
    width: 100vw;
    position: relative;
    top: 0px;
    left: 0px;
}
main {
    grid-template-rows: 130px 1fr 90px;
    grid-template-areas: "oben" "content" "unten";
}

menu {
    position: fixed;
    top: 0px;
    left:0px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(18, 20, 24, 0.9);
    z-index: 9999;
    margin-left: -100vw;
    transition: all 0.2s;
}
menu li {
    
    margin-top: 5px;
    padding-top: 5px;
    border: 1px solid #E5C07B;
    background-color: #282C34;
    border-radius: 9px;
    display: block;
}

menu.active {
    margin-left: 0px;
}

#links {
    position: absolute;
    top: 60px;
    display: block;
    width: 100vw;
    transition: all 0.2s;
}
#link::selection {
    background-color: #111316;
}

#showMenu {
    width: 50px;
    height: 50px;
    display: block;
    border: 3px solid #E5C07B;
    border-radius: 3px;
    position: fixed;
    right: 10px;
    top: 10px;
}
#showMenu:before {
    content: "";
    display: block;
    width: 30px;
    height: 20px;
    border-top: 3px solid #E5C07B;
    border-bottom: 3px solid #E5C07B;
    position: absolute;
    left:7px;
    top:9px;
}

#showMenu:after {
    content: "";
    display: block;
    width: 30px;
    height: 5px;
    border-top: 3px solid #E5C07B;
    position: absolute;
    left:7px;
    top:20px;
}

#closeEx {
    position: absolute;
    display: block;
    top: 10px;
    right: 15px;
    font-size: 17px;
    color: red;
    line-height: 27px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border: 2px solid #E5C07B;
    background-color: #282C34;
    border-radius: 20px;
}
