/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

body {
    background-color: rgb(0, 0, 0);
    color: white;
    font-family: 'roboto mono';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    max-height: 95vh;
    margin: 0px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    justify-items: space-around;
    padding: 0px;
    padding-top: calc(min(2vh, 20px));
    padding-bottom: calc(min(2vh, 20px));
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#Menu {
    list-style: none;
    list-style-position: inside;
    height: 60%;
    -webkit-box-flex: 0.8;
    -ms-flex-positive: 0.8;
    flex-grow: 0.8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    word-wrap: break-word;
    max-width: 100%;
    overflow-x: scroll;
}

#Menu a {
    font-size: calc(min(7vw, 3vh));
    font-weight: lighter;
    color: rgb(128, 204, 179);
    text-decoration: underline;
    text-decoration-thickness: 2%;
    text-underline-offset: 10px;
}

#Menu a:hover {
    color: white;
}

#footer {
    height: 15%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    text-align: center;
    font-weight: 100;
    font-size: 1rem;
}

@media all and (max-height: 500px) {
    #Menu {
        overflow-y: scroll;

    }
}

#Menu::-webkit-scrollbar {
    display: none;
}