body {
    box-sizing: border-box;
    background-color: var(--primary);
    font-family: 'Bowlby One SC', cursive;
    color: var(--text);
}

:root {
    --def1: #20b2aa;
    --def2: #000000;
    --def3: #4B2436;
    --def4: #E2A411;
    --def5: #1E322D;
    --dark1: #0F0F0F;
    --dark2: #DBDBDB;
    --dark3: #892649;
    --dark4: #1CD5BA;
    --dark5: #1F1E1E;
    --sher1: #F2F0D5;
    --sher2: #C13C1A;
    --sher3: #2a9d8f;
    --sher4: #e9c46a;
    --sher5: #264653;
    --primary: var(--def1);
    --text: var(--def2);
    --player1: var(--def3);
    --player2: var(--def4);
    --board: var(--def5);
}

header, .game-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px;
}

h1 {
    font-size: 4vh;
}

.scores {
    font-size: 2vh;
    text-align: center;
    float: left;
    padding-top: 3vh;
}

#winner {
    height: 6vh;
    font-size: 3vh;
    text-align: center;
}

#player-choice {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 1vh solid var(--primary);
}

.hole {
    height: 8vh;
    width: 8vh;
    border-radius: 100%;
    background-color: transparent;
    border: 1vh solid var(--primary);
}

.column>div {
    border: 1vh solid var(--board);
}

#board {
    display: flex;
    flex-direction: row;
    margin: auto;
    height: 60vh;
    width: 70vh;
    background-color: var(--board); 
    border: 1vw solid var(--board);
}

#player-one-color {
    border-radius: 100%;
    text-shadow: 1vw 1vw 3vw var(--player1), -1vw -1vw 3vw var(--player1), 1vw -1vw 3vw var(--player1), -1vw 1vw 3vw var(--player1);
}

#player-two-color {
    border-radius: 100%;
    text-shadow: 1vw 1vw 3vw var(--player2), -1vw -1vw 3vw var(--player2), 1vw -1vw 3vw var(--player2), -1vw 1vw 3vw var(--player2);
}

#new-board-wrapper, #selects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    header {
        flex-direction: column;
    }

    /* .game-info {
        flex-direction: row;
    } */

    #winner {
        order: 1;
        flex: 100%;
    }

    #player-choice>div {
        border: 1vw dashed var(--board);
    }

    #board {
        height: 60vw;
        width: 70vw;
    }

    .column>div {
        height: 8vw;
        width: 8vw;
        border: 1vw solid var(--board);
    }

    #player-choice {
        border: 1vw solid var(--primary);
    }

    #player-choice>div {
        height: 8vw;
        width: 8vw;
    }
}