body {
    display: flex;
    height: 95vh;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.anchor {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    margin: 0 auto;
}

.headerPanel {
    box-sizing: border-box;
    color: aliceblue;
    background-color: violet;
    width: 100%;
    font-size: 28px;
    font-weight: 700;
    padding: 25px 25px;
    border: 4px solid purple;
    border-radius: 10px;
}

.container.gameBoard {
    display: grid;
    height: 532px;
    width: 525px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    text-align: center;
    border: 4px solid purple;
}

.blankTile.gameBoard {
    color: magenta;
    font-family: 'Courier New', Courier, monospace;
    font-size: 118px;
    /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; */
    font-weight: 900;
    line-height: 175px;
    height: 175px;
    border: 2px solid violet;
    margin: -1px;
}

.buttonPanel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

button {
    color: aliceblue;
    background-color: violet;
    font-size: 26px;
    font-weight: 700;
    padding: 15px 20px;
    border: 4px solid purple;
    border-radius: 10px;
}

.displayMarker {
    box-sizing: border-box;
    color: gold;
    background-color: purple;
    height: 55px;
    width: 55px;
    line-height: 40px;
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    /* padding: 10px 10px; */
    border: 6px solid violet;
    border-radius: 10px;
    margin: 0 10px;
}

.resetGame {
    box-sizing: border-box;
    color: magenta;
    background-color: white;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 34px;
    font-weight: 900;
    border: 10px solid magenta;
    border-radius: 20px;
    width: 75%;
}