body {
    margin: 0px;
    padding: 0px;
    font-family: 'Titillium Web', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.aboutTheGame {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.aboutTheGame #title {
    font-size: 24px;
}
.aboutTheGame #slogan {
    font-size: 15px;
}
.game {
    background-color: aliceblue;
    width: 700px;
    height: 400px;
    border: 1px solid #b5b5b5;
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 350px);
}
.gameInner {
    position: absolute;
    top: calc(50% - 50px);
    left: calc(50% - 255px);
}
.torch {
    background-color: chartreuse;
    width: 100px;
    height: 100px;
    border-radius: 55px;
    display: inline-block;
    cursor: hand;
}
.red {
    background-color: darkred;
}
#startGame {
    margin-left: auto;
    margin-right: auto;
}
.gameControls {
    margin-left: auto;
    margin-left: auto;
    text-align: center;
    margin-top: 25px;
}

.message {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 27px;
    font-size: 24px;
    cursor: default;
    display: none;
}

#cheat {
    display: none;
}
.rulesContainer {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50;
    text-align: center;
}

.rulesContainer #header {
    color: #636363;
    font-size: 25px;
    display: inline;
}

.rulesContainer #slogan {
    
}

.stage {
    width: 100px;
    position: absolute;
    bottom: 68px;
    left: calc(50% - 50px);
    text-align: center;
    font-size: 20px;
}
.torch:hover {
    background-color: yellowgreen;
}
.torch:active {
    background-color: darkgreen;
}

.counter {
    font-size: 220px;
    position: absolute;
    z-index: 1;
    width: 200px;
    height: 300px;
    text-align: center;
    left: calc(50% - 100px);
    top: calc(50% - 175px);
    display:none;
}
.subStep {
    position: absolute;
    width: 100px;
    left: calc(50% - 50px);
    text-align: center;
    top: 130px;
}
