.game-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 110px);
    grid-template-rows: repeat(3, 110px);
    grid-gap: 10px;
    width: auto;
    margin: 0 50px;
    opacity: 0.45;
}

.grid-cell {
    text-align: center;
    border: 1px solid #000!important;
    background-color: #f0f0f0;
    width: 110px;
    height: 110px;
    line-height: 110px;
    position: relative;
}

.grid-cell img {
    display: block;
    max-width: 80px;
    max-height: 80px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.game-wrap {
    display: flex;
    flex-direction: column;
}

.game-controls {
    display: flex;
    /*flex-direction: column;*/
    margin-left: 11%;
    margin-right: 11%;
}

button {
    margin: 5px;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-title {
    text-align: center;
    color: #383838;
    font-size: 40px;
    font-family: "Jost", sans-serif;
    margin-top: 0px;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 650;
}

/* level css */
.level-dropdown .level-toggle {
    display: none;
}

.level-dropdown, #remainingTries {
    width: 50%;
}

#remainingTries {
    text-align: right;
}

.level-options {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    z-index: 100;
    flex-direction: column;
    align-items: center;
}

.level-options label {
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.level-options label:hover {
    background-color: #e5e5e5;
}

.level-dropdown.show .level-options {
    display: block;
}

.option {
    display: inline-block;
    margin-right: 6px;
}

#positionMatchButton, #soundMatchButton, #startButton, #continueButton, #newGame {
    background-color: #C8E6FE;
    line-height: 1.6;
    text-transform: none;
    border: #C8E6FE;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
    box-sizing: border-box;
    color: black;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    outline: 0;
    padding: 10px 25px;
    text-align: center;
    transform: translateY(0);
    transition: transform 150ms, box-shadow 150ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

#startButton, #continueButton, #newGame {
    margin: 35% 11% -44% 20%;
    z-index: 99;
    width: 60%;
    /*display: flex;
    justify-content: center;*/
}

#continueButton {
    margin-top: 24%;
    margin-bottom: -33%;
}

#newGame {
    margin-top: 44%;
    margin-bottom: -54%;
}

#positionMatchButton {
    margin-right: 20%;
}

.arrow-bottom {
    display: inline-block;
    margin-left: 3px;
    border-color: transparent!important;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid rgba(16, 16, 16, 0.73)!important;
}

#visual, #visualCorrect, #audio, #audioCorrect {
    margin-right: 8px;
}

input[type=checkbox]{
    accent-color:  #4e4e4e;  
}

@media only screen and (max-width: 600px) {
    .game-grid {
        grid-gap: 3px;
    }
}