body {
    background: #90a997;
}
.outerContainer {
    height: 100vh;
}

.logo {
    max-width: 200px;
    opacity: 0.4;
}

.branchLeft {
    width: 150px;
    height: 300px;
    position: absolute;
    bottom: 100px;
    left: 0;
    background: url('../img/vejice2-1.svg') left center no-repeat;
}

.branchRight {
    width: 150px;
    height: 300px;
    position: absolute;
    bottom: 100px;
    right: 0;
    background: url('../img/vejice2-2.svg') right center no-repeat;
}
.gameContainer {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0px auto;
    max-width: 1100px;
    height: 715px;
    background: #efece5;
    border-radius: 40px;
    padding: 16px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}

.checkButton {
    width: 80px;
    height: 80px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    transition: 0.2s all !important;
    cursor: pointer;
    z-index: 10000000;
}

.reloadButton {
    width: 80px;
    height: 80px;
    position: absolute;
    right: 80px;
    bottom: 20px;
    transition: 0.2s all !important;
    cursor: pointer;
    z-index: 10000000;
}

.checkButton:hover,
.reloadButton:hover {
    transform: scale(1.1);
}

.gameTitleContainer {
    padding: 20px 20px;
}

.gameTitleContainer img {
    width: 50px !important;
    margin: 10px 20px 0px 0px;
}

.gameTitleContainer .gameTitle {
    font-size: 2em;
    font-family: 'Lora', serif !important;
    color: #29675f;
}

#toClassroomBtnLink {
    color: #ffffff;
    font-weight: 600;
    background: #cfae84;
    border-color: #cfae84;
    border-radius: 20px;
    float: right;
    transition: 0.2s all !important;
}