@font-face {
    font-family: "bit";
    src: url(8bit_wonder/8-BIT\ WONDER.TTF)format("truetype");
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    width: 100vw;
    background-color: black;
    color: white;
    font-family: "bit";
}
h1 {
    margin-bottom: 60px;
}

#content {
    display: flex;
    gap: 30px;
    width: 100vw;
    align-items:  center;
    flex-direction: column;
}

#turn-player {
    width: 220px;
    height: 90px;
    text-align: center;
    background-color: white;
    color: black;
}

#players-points {
    width: 220px;
    text-align: center;
}

#velha {
    display: flex;
    flex-direction: column;
    background-color: rgb(0, 0, 0);    
    color: black;
    font-family: "bit";
    margin-bottom: 30px;
    
}

.quadrado {
    width: 70px;
    height: 70px;
    background-color: rgb(255, 255, 255);
    margin: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.linha {
    display: flex;
}

footer {
    font-family: 'Courier New', Courier, monospace;
}