
/*complete site*/
.game-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*Start Button*/
.start-game-button-holder {
    display: flex;
    justify-content: center;
}

.start-game-button:hover {
    background-color: #B39BC8;
}

/*game button holder*/
.game-buttons-holder {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 50vh;
}

.game-button-holder-up {
    display: flex;
    justify-content: center;
    height: 25%;
}

.game-button-holder-middle {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: 50%;

}

.game-button-holder-down {
    display: flex;
    justify-content: center;
    height: 25%;
}

.game-button-holder-left {
    display: flex;
    justify-content: center;
}

.game-button-holder-right {
    display: flex;
    justify-content: center;
}

/*game buttons*/
.game-button {
    font-size: 1.3em;
    background-color: #a5d6a7;
    border-radius: 10px;

    border-style: solid;
    border-color: #a5d6a7;

    display: flex;
    justify-content: center;
    align-items: center;
}

.clickable:hover {
    border-style: solid;
    border-color: darkgreen;
    cursor: pointer;
}

.clicked {
    background-color: beige;
}

#UP, #DOWN {
    width: 40%;
}

.dummy_playceholder {
    height: 40px;
}

.marked {
    background-color: #FF8080;
    border-color: #FF8080;
}

/*Punkteholder mit Punkten und number of punkten*/
/*TODO: center Points without padding*/
.points-holder {
    display: flex;
    margin: 5%;
    background-color: #A1C3D1;
    font-weight: bold;
    width: 20%;
    border-radius: 10px;
    flex-direction: column;
}

.points-and-numbers {
    display: flex;
    height: 50%;
    justify-content: center;
    align-items: center;
}

.game-over {
    margin: 50px;
    font-size: 2.5em;
    color: black;
}

/* Smaller Devices, ab 950px passen die Buttons nicht mehr in eine Zeile */
@media only screen and (max-width: 900px) {

    #LEFT {
        margin-left: 20px;
        width: 15vw;
    }

    #RIGHT {
        margin-right: 20px;
        width: 15vw;
    }


}

/* Desktop Styles */
@media only screen and (min-width: 901px) {

    #LEFT {
        margin-left: 60px;
        width: 15vw;
    }

    #RIGHT {
        margin-right: 60px;
        width: 15vw;
    }


}
