body {
    background-color: burlywood;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.field {
    height: 75px;
    width: 75px;
}

.black {
    background-color: rgb(50, 150, 50);
}

.white {
    background-color: lightgrey;
}

.container {
    display: flex;
    flex-direction: row;
}

.board {
    display: grid;
    grid-template-columns: repeat(8, 75px);
    transition: transform .5s;
}

.selected.black {
    background-color: darkgreen;
}

.selected.white {
    background-color: grey;
}

.player {
    font-size: 2rem;
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 5px;
}

.selection-panel {
    display: flex;
    flex-direction: column;
}

.selection-panel.active {
    margin-left: 20px;
}

.select {
    width: 0;
    height: 100px;
    transition: width .5s;
}

.select.active {
    width: 100px;
    border: 2px solid;
}

.settingsButton {
    text-decoration: none;
    color: black;
    margin-top: 20px;
    width: 100px;
    height: 30px;
    background-color: rgba(166, 43, 43, .8);
    align-content: center;
    text-align: center;
    border-radius: 5px;
    box-shadow: 5px 5px 8px rgba(255, 255, 255, .5);
}