@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;0,700;1,400&display=swap');

* {
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    font: 400 14px Roboto, sans-serif;
    width: 100%;
    height: 70%;
    margin: auto;
    background-image: url(https://cdn.discordapp.com/attachments/815334976571703387/1077727014129258546/background.png);
    background-size: cover;
    background-repeat: no-repeat;
}

input, button, textarea {
    font: 400 18px Roboto, sans-serif;
}

button {
    cursor: pointer;
}

.board {
    width: min-content;
    margin: 64px auto 0;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 6px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.square {
    width: 50px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.piece {
    width: 50px;
    height: 50px;
}

.black {
    background: #769656;
}

.white {
    background: #eeeed2;
}