html {
    background-image: url('./assets/stars-night-space-charles-wain.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    color: white;
    height: 100%;
    width: 100%;
    position: fixed;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

#game-board {
    width: 100%;
    display: flex;
    flex-direction: row;

    .player {
        margin: auto;
        text-align: center;
    }

    #board {
        margin: 25%;
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%;
        align-items: center;
    }
}

.row {
    display: flex;
    flex-direction: row;
    margin: 1px;
}

.cell {
    margin: 1px;
    border: 1px solid white;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cell:hover {
    background-color: rgb(123, 207, 215);
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;

    #reset {
        height: 25px;
        width: 75px;
        border: black 1px solid;
        border-radius: 5px;
        cursor: pointer;
        background-color: rgb(255, 255, 255);
    }

    #reset:hover {
        background-color: rgb(123, 207, 215);
    }
}