body, html {
    margin: 0;
    height: 100%;
    overflow: hidden;
    user-select: none;
    user-zoom: none;
}


#playButton {
    display: block;
    height: 8vw;
    position: fixed;
    bottom: 5vw;
    margin-left: 2vw;
}

.homeText {
    margin-right: 50vw;
    height: 6vw;
    margin-left: 2vw;
}

#playButton:hover {
    transform: scale(1.1);
}

.homeText:hover {
    transform: translateX(2vw);
}

#menu {
    background: url(/images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    animation: gameStartTransition 300ms linear;
}


#gameVersions {
    flex-direction: column-reverse;
    animation: gameStartTransition 300ms linear;
    background: url(/images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.gameVersion {
    color: green;
    font-family: Impact;
    text-shadow: 1px 1px 2px lightgreen, 0 0 1em blue, 0 0 0.2em blue;
    font-size: 3vh;
    display: inline-block;
    letter-spacing: 0.2vw;
    margin-left: 2vw;
    margin-top: 2vh;
    margin-right: 50vw;
}

.gameVersion:hover {
    transform: translateX(2vw);
    color: lightgreen;
}

.backToHomeButton {
    position: fixed;
    height: 10vh;
    bottom: 5vh;
    right: 2vw;
}

.backToHomeButton:hover {
    transform: scale(1.1);
}
@keyframes gameStartTransition {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;        
}
}


#settings {
    animation: gameStartTransition 300ms linear;
    flex-direction: column-reverse;
    animation: gameStartTransition 300ms linear;
    background: url(/images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}