button{
    display: flex;
    background-color: rgb(20, 20, 20);
    color: white;
    padding: 5px;
    flex-direction: column;
    text-align: center;
    font-size: 80px;
    justify-content: center;
    align-items: center;
    height: 30vh;
    border: 1px solid rgb(80, 80, 80);
    border-bottom: 2px solid rgb(80, 80, 80);
}

button:hover{
    background-color: rgb(30, 30, 30);
}
button:disabled{
    color: rgb(250, 250, 250);
    pointer-events: none;
}

#gameField{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    height: 90vh;
}

#win{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(20, 20, 20);
    height: 100vh;
}

.player1Win, .player2Win, .undecided {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.player1Win{
    color: green;
}

.player2Win{
    color: red;
}

.undecided{
    color: gray;
}

#newGame{
    width: 200px;
    height: 100px;
    margin: 30px 0 30px 40%;
    font-size: 30px;
    border-radius: 20px;
    border: initial;
    background-color: rgb(40, 40, 40);
}

#newGame:hover{
    background-color: rgb(60, 60, 60);
}

h1{
    color: white;
    margin-left: 40px;
}

#statistic{
    color: white;
    font-size: 15pt;
    background-color: rgb(30, 30, 30);
    padding: 10px;
    margin-left: 40px;
    min-width: 20%;
    border-radius: 10px;
}

#player{
    background-color: rgb(30, 30, 30);
    margin: 0;
    height: 10vh;
    font-size: 60px;
    text-align: center;
    overflow-y: auto;
}

.openMenu{
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.openMenu:hover{
    background-color: rgb(100, 100, 100);
}


.headlineIcon{
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
}

.headlineIcon:hover{
    background-color: rgb(40, 40, 40);
}

@media(max-width: 500px) {
    #newGame{
        margin-left: 30px;
        width: 90%;
        height: 80px;
    }

    #statistic{
        font-size: 11pt;
    }

    #player{
        padding: 0 40px;
        font-size: 40px;
    }
}