body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
}

#main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#gameboard {
    width: 640px;
    height: 640px;
    background-color: aquamarine;
    display: flex;
    flex-wrap: wrap;
}

.square {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.piece {
    padding: 16px;
    z-index: 10;
    position: relative;
}

.piece svg {
    width: 48px;
    height: 48px;
    position: relative;
    z-index: -5;
}

.piece#pawn svg{
    width: 28px;
    height: 28px;
}

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

.bgred{
    background-color: #fa4a2b;
}

.bgblack{
    background-color: #919191;
}

.white {
    fill: white;
}

.black {
    fill: black;
}

#info {
    width: 640px;
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
}

#info #player {
    text-transform: uppercase;
}

.message-detail {
    padding: 0;
    margin: 20px;
}