html {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

body {
    position: fixed;
    height: 100%;
    width: 100%;
    margin: 0;
    overscroll-behavior-y: contain;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
    font-size: 3vh;
    background-color: darkslategray;
}

a {
    color: steelblue;
}

.main {
    height: 100%;
    width: 100;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameWindowDiv {
    height: 100%;
    width: 50vh;
    display: none;
    justify-content: center;
}

.gameCanvas {
    height: 100vh;
    width: 50vh;
}

.gameMenu {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.gameMenuContent {
    height: 100%;
    width: 50vh;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.title {
    position: relative;
    text-align: center;
    margin: 1em;
}

h1 {
    line-height: 0.5em;
}

.menuSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;

}

.sliderLabel {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sliderValue {
    width: 2em;
    display: flex;
    justify-content: right;
}

.slider {
    width: 25vh;
}

.fullScreenElement {
    display: flex;
    flex-direction: row;
    align-items: center;
    zoom: 2em;
}

.menuButton {
    width: 8em;
    font-family: "Roboto", sans-serif;
    font-size: 3vh;
    font-weight: bold;
    line-height: 0.3em;
    background-color: "blue";
    color: "blue";
    border: 0;
    border-radius: 0.4em;
    padding: 1em;
    margin: 0.3em;
}

.startButton {
    display: block;
}

.endButton {
    display: none;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 5em;
    margin-bottom: 1em;
}

.gamePaused {
    font-size: 5vh;
    display: none;
}

.helpScreen {
    display: none;
    position: absolute;
    height: 100%;
    width: 50vh;
    margin: auto;
    justify-content: center;
    background-color: black;
    color: white;
    overflow: hidden;
    overflow-y: auto;
}

.helpScreenContent {
    height: 100%;
    width: auto;
    margin: 1em;
}

.helpScreenTitle {
    display: flex;
    font-size: 150%;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

.helpSectionTitle {
    margin-bottom: 1em;
    text-decoration: underline;
}

.touchHelpImage {
    width: 20%;
    height: auto;
}

.touchHelpSection {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.touchHelpTextRight {
    padding-right: 1em;
    padding-left: 0.6em;
    text-align: left;
    width: 100%;
}

.touchHelpTextLeft {
    padding-right: 0.6em;
    padding-left: 1em;
    text-align: right;
    width: 100%;
}


.keyboardHelpContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.keyboardHelpContent {
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin: auto;
}

.keyboardHelpSection {
    display: flex;
    flex-direction: row;
    margin-bottom: 0.5em;
    justify-content: left;
}

.keyboardKeyImage {
    width: 1.5em;
    height: auto;
}

.keyboardSpaceKeyImage {
    width: 3.9em;
    height: auto;
}

.keyboardKeyTextOr {
    padding-left: 0.3em;
    padding-right: 0.3em;
}

.keyboardKeyText {
    padding-left: 1em;
    text-align: left;
}

.helpFooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2em;
    padding-bottom: 2em;
}


::-webkit-scrollbar {
    width: 0.4em;
}
::-webkit-scrollbar-track {
    background: black;
}
::-webkit-scrollbar-thumb {
    background: #535353;
}
::-webkit-scrollbar-thumb:hover {
    background: #3c3c3c;
}

