* {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    color: #eeeeee;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #151515;
}

:root {
    --square-size: 70px
}

.board {
    background-color: #333333;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    width: calc(var(--square-size)*9.1);
}

.square {
    background-color: #eeeeee;
    height: var(--square-size);
    width: var(--square-size);
    border-radius: 16px;
    align-content: center;
    margin: 4px;
    transition: all 0.1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.square.white {
    background-color: #eeeed2;
}

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


.square img {
    cursor: pointer;
    width: 90%;
}

.form {
    width: 100%;
    background-color: #769656;
    padding: 4px 8px;
}

.form input {
    padding: 4px 8px;
    color: #151515;
    width: 70%;
}

.server-status {
    position: fixed;
    bottom: 10px;
    left: 10px;
    border-radius: 4px;
    padding: 4px 8px;
    background-color: #151515;
    border: 1px solid #454545;
}

.server-status::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
    background-color: #454545;
}

.server-status.online::before {
    background-color: #05e274;
}