.screen {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    align-items: center;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
}

#pauseScreen {
    z-index: 80;
}

.close {
    background-image: url(/img/close.svg);
}

.menu button.close {
    position: absolute;
    top: 1em;
    right: 1em;
}

.menu h1 {
    font-size: 2em;
}

#pauseBtn {
    width: 20vw;
    height: 20vw;
    background-image: url(/img/pause.png);
    background-repeat: no-repeat;
    background-size: contain;
    filter: drop-shadow(0 0 1em yellow);
}

#youLostScreen h1 {
    color: white;
    text-shadow: 0 0 1em red, 0 0 2em red;
}

.homeBtn {
    background-image: url(/img/home.svg);
}

.restartBtn {
    background-image: url(/img/restart.svg);
}

#mainMenu {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.rowButtons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
}

.rowButtons div {
    padding: 0 3vw;
}

button {
    padding-bottom: 2vh;
    width: 5vw;
    height: 5vw;
    filter: invert(1) drop-shadow(0 0 1em lime);
}

button:hover {
    filter: invert(1) drop-shadow(0 0 1em #FF0);
}

#lbBtnContainer {
    position: absolute;
    bottom: 1em;
    left: 1em;
}

.lbBtn {
    background-image: url(/img/leaderboard.svg);
    filter: invert(1) drop-shadow(0 0 1em #FF0);
}

.lbBtn:hover {
    filter: invert(1) drop-shadow(0 0 1em lime);
}

.lbBtn+p {
    color: yellow;
    text-shadow: 0 0 1em yellow;
}

#leaderboard h1 {
    color: yellow;
    text-shadow: 0 0 1em yellow;
}

#leaderboard table {
    width: 100%;
}

.guideBtn {
    background-image: url(/img/guide.svg);
}

.playBtn {
    background-image: url(/img/car.svg);
    width: 10vw;
    height: 10vw;
}

.settingBtn {
    background-image: url(/img/settings.svg);
}

.menu {
    background-color: black;
    border: 1em solid white;
    border-radius: 1em;
    width: 80vw;
    height: 80vh;
    z-index: 200;
    position: relative;
}

.menu>* {
    padding: 1em;
}

.menu>h1 {
    position: absolute;
    top: -2.5em;
    left: 0;
    right: 0;
}

.menu>h2 {
    padding-top: 2em;
}

.vbBtn {
    background-image: url(/img/vb.svg);
    width: 3em;
    height: 3em;
}

#version {
    position: absolute;
    right: 0;
    bottom: 0;
}