/*@media (max-width: 800px) {
    #jatek {
        display: none;
    };

    #navbarNav > ul > li:nth-child(5) {
        display: none;
    }
}*/

.game {
    width: 100%;
    position: relative;
    background: url("../kepek/game-bg.png");/*rgb(33, 37, 41);*/
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.5);
    color: white;
    overflow: hidden;
    border-radius: 12px;
}

.game .scene {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.game .active {
    display: flex;
}

.game button {
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: rgb(198, 11, 30);
    color: white;
    cursor: pointer;
}

canvas {
    background: #d2b48c;
    border: 6px solid white;
    border-radius: 6px;
}

#difficultySelector {
    display: flex;
    flex-direction: row;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    padding: 0;
    border: solid 2px rgb(198, 11, 30);
    border-radius: 8px;
}

#difficultySelector > button {
    background-color: rgba(198, 11, 30, 0) !important;
    transition: 0.3s;
    padding: 7px 10px !important;
}
#difficultySelector > button:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
#difficultySelector > button:last-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
#difficultySelector > button:hover:first-child {
    background: linear-gradient(-90deg, rgba(198, 11, 30, 0.0) 0%, rgba(198, 11, 30, 0.5) 100%);
}
#difficultySelector > button:hover:last-child {
    background: linear-gradient(90deg, rgba(198, 11, 30, 0.0) 0%, rgba(198, 11, 30, 0.5) 100%);
}

#difficulties > * {
    height: 100%;
    margin: 0;
}
#difficultyText {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    padding: 0 10px;
    cursor: default;
    width: 110px;
}

#stageLoaderText {
    font-weight: 600;
    font-size: 50px;
}