body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.main{
    display: flex;
    flex-direction: column;
}
.header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 10vh;
    width: 100vw;
    background-color: lightgray;
}

.bagchal-board{
    height: 88vh;
    width: 100vw;
    background-color: lightblue;
    display: flex;
    justify-content: center;
    align-items: center;
}

.board {
    display: flex;
    justify-content: center;
    align-items: center;
}

#gameCanvas {
    border: 2px solid #333;
    background-color: white;
    cursor: pointer;
}
.footer{
    height: 2vh;
    width: 100vw;
    text-align: center;
    justify-content: center;
    background-color: lightgray;
}