.game-container {
    width: fit-content;
    margin: auto;
}

#gameboard {
    width: 400px;
    height: 400px;
    background-color: black;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid gray;
    margin: 10px 0;
}

.square {
    width: 50px;
    height: 50px;
    position: relative;
}

.white-square {
    background-color: rgb(255, 255, 255)
}

.black-square {
    background-color: #997950;
}

.square svg {
    width: 40px;
    height: 40px;
    margin: 5px;
    position: relative;
    z-index: -9;
}

path {
    position: relative;
    z-index: -10;
}

.piece {
    position: relative;
    z-index: 9;
}

.black-piece {
    fill: rgb(28, 28, 28);
    stroke-width: 8px;
    stroke: white;
}

.white-piece {
    fill: rgb(255, 255, 255);
    stroke-width: 8px;
    stroke: black;
}

.captures {
    margin-left: 20px;
}

#black-captures,
#white-captures {
    display: flex;
    flex-wrap: wrap;
    background-color: ghostwhite;
    width: 240px;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    margin: auto;
}

#black-captures {
    border-color: rgba(43, 43, 43, 0.4);
}

.captured-piece {
    width: 30px;
    height: 30px;
}

.captured-piece svg {
    width: 20px;
    height: 20px;
    padding: 5px
}

#timer {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.blutton {
    width: 100px;
    height: 50px;
    margin: 10px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}