*, html, body {
    font-family: 'IBM Plex Mono', Monospaced, monospace;
}
body {
    background: #000;
    color: #fff;
    margin: 5vh;
}
header {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 5vh;
}
main {
    display: block;
    margin: 0;
    height: 70vh;
    border: 1pt solid #fff;
    padding: 0.5vh;
}
footer {
    display: flex;
    margin: 3vh;
    text-align: center;
    justify-content: space-between;
}

.menuItem {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
.menuItem a {
    margin: 0;
    padding: 0;
    color: inherit;
    text-decoration: none;
}
.menuItem:hover{
    background: #fff;
    color: #000;
}

.menuItem::before {
    display: inline-block;
    text-align: right;
}
.menuItem:not(:hover):before {
    content: "\00a0";
}
.menuItem:hover:before {
    display: inline-block;
    content: "*";
}

#mainMenu {
    list-style-type: none;
    padding: 0;
}

footer a {
    text-decoration: none;
}
#footerStickers img {
    height: 1.5em;
}