.mainMenuButton {
    background-color: #222222;
    height: 6vw;
    width: 16vw;
    border: 0;
    color: whitesmoke;
    font-family: Impact;
    border-radius: 1vw;
    letter-spacing: 0.11vw;
    font-size: 2vw;
    margin-top: 0.5vw;
    margin-left: 0.5vw;
    margin-bottom: 0.5vw;
}

.mainMenu {
    display: flex;
    flex-direction: column;
    background-color: gray;
    margin-right: 75vw;
    border-radius: 1vw;
    
}

.mainMenuButton:hover {
    transform:translateX(1vw);
    cursor: grab;
}


.gameLogoText {
    margin-top: 1.5vw;
    margin-left: 1.5vw;
    margin-bottom: 3vw;
    letter-spacing: 0.11vw;
    font-size: 3vw;
    color: whitesmoke;
    font-family: Impact;
}

.privacyPolicyLink {
    margin-left: 0.5vw;
    color: #222222;
    font-family: Impact;
    letter-spacing: 0.11vw;
    font-size: 1.33vw;
    margin-right: 50%;
}

.privacyPolicyLink:hover {
    color: yellow;
}


.mainMenuImg {
    float: right;
    height: 35vw;
    margin-left: 50%;
    margin-top: -35%;
    margin-right: 10%;
}

.gameLogoText2 {
    color: whitesmoke;
    background-color: #222222;
    font-size: 3vw;
    font-family: Impact;
    margin-left: 35vw;
    margin-right: 35vw;
    text-align: center;
    padding: 1vw;
    margin-top: -5vw;
    border-radius: 1vw;
}

.backToHomeLink {
    color: whitesmoke;
    background-color: #222222;
    font-size: 2vw;
    font-family: Impact;
    margin-left: 1vw;
    text-align: center;
    padding: 0.3vw;
    margin-top: 1vw;
    border-radius: 0.3vw;
    width: 10vw;
    display: inline-block;
}

.backToHomeLink:hover {
    transform: scale(1.1);
    cursor: grab;
}

.gameImg {
    width: 40vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0vw; 
    display: block;
    position: static;
}

.gameImg:hover {
    cursor: grab;
    transform: scale(1.05);
}

.gameImg:active { 
    transform: scale(1.11);
}



.gameCounter {
    color: whitesmoke;
    background-color: #222222;
    font-size: 2vw;
    font-family: Impact;
    text-align: center;
    padding: 0.6vw;
    border-radius: 0.3vw;
    min-width: 10vw;
    position: fixed;
    bottom: 1vw;
    left: 1vw;
}

.gameMultiCounter {
    color: whitesmoke;
    background-color: #222222;
    font-size: 2vw;
    font-family: Impact;
    text-align: center;
    padding: 0.6vw;
    border-radius: 0.3vw;
    min-width: 10vw;
    position: fixed;
    bottom: 5vw;
    left: 1vw;
}

body {
    background-color: lightgray;
    display: block;
}


.gameUpgrades {
    color: whitesmoke;
    background-color: #222222;
    font-size: 1vw;
    font-family: Impact;
    text-align: center;
    padding: 1vw;
    border-radius: 0.3vw;
    width: 15vw;
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    display: none;
}

.hideGameUpgrades:hover {
    cursor: grab;
    transform: scale(1.05);
}


.showGameUpgrades {
    color: chocolate;
    background-color: #222222;
    font-size: 2vw;
    font-family: Impact;
    text-align: center;
    padding: 1vw;
    border-radius: 0.3vw;
    width: 15vw;
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    display: block;
}

.showGameUpgrades:hover {
    cursor: grab;
    transform: scale(1.05);
}

.upgrade:hover {
    transform: translateX(0.5vw); 
    cursor: grab;
}

.gameBuyUpgradeConfirm {
    color: whitesmoke;
    background-color: #222222;
    font-size: 1vw;
    font-family: Impact;
    text-align: center;
    padding: 1vw;
    border-radius: 0.3vw;
    min-width: 15vw;
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    display: none;
}

.notEnoughPoints {
    color: red;
    background-color: #222222;
    font-size: 2vw;
    font-family: Impact;
    text-align: center;
    padding: 1vw;
    border-radius: 0.3vw;
    min-width: 15vw;
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    display: none;
}