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

#securlyGnome {
    position: fixed;
    top: 20vh;
    left: 8vw;
    height: 50vh;
}

#securlyGnome:hover {
    transform: scale(1.05);
    cursor: url('/images/gameCursor.cur'), auto;
}

#gameCounters {
    position: fixed;
    width: 100vw;
    height: 10vh;
    top: 90vh;
    background: rgba(0, 0, 0, 0.5);
}

#pointsCounter {
    color: green;
    font-family: Impact;
    text-shadow: 1px 1px 2px lightgreen, 0 0 1em blue, 0 0 0.2em blue;
    position: fixed;
    font-size: 5vh;
    display: inline-block;
    letter-spacing: 0.2vw;
    top: 88vh;
    margin-left: 2vw
}

#gameCounterText {
    height: 12vh;
}

#gameCounterText:hover {
    transform: translateX(-1vw);
}

#upgrades {
    position: fixed;
    top: 10vh;
    left: 60vw;
    background:rgba(0, 0, 0, 0.5);
    padding: 1vw;
}

.upgrade {
    font-size: 3.5vh;
    color: green;
    font-family: Impact;
    letter-spacing: 0.1vw;
    text-shadow: 1px 1px 2px lightgreen, 0 0 1em blue, 0 0 0.2em blue;
}

.upgrade:hover {
    cursor: url("/images/upgradeCursor.cur"), auto;
}

#bossInfo {
    position: fixed;
    left: 5vw;
    font-size: 5vh;
    color: green;
    font-family: Impact;
    letter-spacing: 0.1vw;
    text-shadow: 1px 1px 2px lightgreen, 0 0 1em blue, 0 0 0.2em blue;
    top: 1vh;
}