*{
    margin: 0;
    padding: 0;;
}

.container{
    background-color: rgb(50, 52, 55);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.game-area{
    width: 1000px;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);

}

.board{
    width: 800px;
    height: 800px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 1px 1px 1px black;

}
 
.square1{
    background-color: white;
    width: calc(800px / 8);
    height: calc(800px / 8);
}

.square1:nth-child(2n + 2){
    background-color: rgb(32, 32, 32);
}

.deathsw, .deathsb{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.deathsw > img, .deathsb > img{
    width: 45px;
    height: 45px;
}
.square2{
    background-color: white;
    width: calc(800px / 8);
    height: calc(800px / 8);
}

.square2:nth-child(2n + 1){
    background-color: rgb(32, 32, 32);
}

img {
    height: 100px;
    width: 100px;
    filter: drop-shadow(2px 2px 0 white)
            drop-shadow(-2px 2px 0 white)
            drop-shadow(2px -2px 0 white)
            drop-shadow(-2px -2px 0 white);
}

.select-from{
    background-color: rgb(239, 120, 102) !important;
}

.select-to{
    background-color: rgb(255, 246, 116);
}
