@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background-color: rgb(0, 2, 0);
}

td,
table {
    border: solid 2px rgb(200, 200, 200);
    border-collapse: collapse;
    border-spacing: 0;
    color: rgb(250, 250, 250);
    background: none;
    table-layout: fixed;
    text-align: center;
}

td {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    background-color: rgb(10, 10, 10);
    box-shadow: rgb(255, 255, 255) 0px 0px 3px;
}

table {
    width: 600px;
    height: 600px;
}

#player,
#bot {
    margin: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}




.clickable {
    background-color: rgb(0, 2, 0);
    cursor: pointer;
    border: solid 1px rgb(200, 200, 200);
}

#gen-btn {
    position: fixed;
    transform: translate(0px, 40px);
}

#build-btn {
    scale: 2.5;
    position: fixed;
    transform: translate(0px, -10px);

}

.builder-btns
{
    padding: 5px;
    margin: 5px;
}

button
{
    cursor: pointer;
}

h5
{
    color: white;
}

span
{
    color: white;
}