.root {
    width: 100%;
    height: 100%;
    padding: 10% 10% 5% 20%;
    overflow: hidden;
    overflow-y: auto;
    background: #000;
    color: #fff;
    box-sizing: border-box;
}
.menu {
    display: inline-flex;
    flex-direction: column;
}
.menuButton {
    position: relative;
    border: 0;
    background: none;
    color: #fff;
    font-family: inherit;
    padding: 12px 10px;
    font-size: 25px;
    font-style: italic;
    cursor: pointer;
    outline: none;
    text-align: left;
    transform-origin: 0 50%;
}
.menu:not(:hover) .menuButtonActive,
.menuButton:hover {
    transform: scale(1.2);
}
.menu:not(:hover) .menuButtonActive::before,
.menuButton:hover::before {
    content: '>>';
    position: absolute;
    left: -1.5em;
}
.version {
    position: absolute;
    bottom: 0;
    right: 20px;
    padding: 5px 10px;
    background: #000;
    font-size: 12px;
    font-weight: bold;
}
.title {
    font-size: 30px;
    font-weight: normal;
    margin: 30px 0;
}
.backButton {
    border: 0;
    background: none;
    color: #fff;
    font-family: inherit;
    padding: 5px 10px;
    font-size: 22px;
    font-style: italic;
    cursor: pointer;
    outline: none;
}
.backButton:focus {
    outline: 1px dotted;
}