body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom right, #3498db, rgb(225, 236, 14)); 
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#app {
    width: 300px;
    margin: 0 auto;
}

#player {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #fff; /* Adjust text color */
}

.board {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
}

.cell {
    width: 100px;
    height: 100px;
    border: solid 1px black;
    font-size: 28px;
    font-weight: bolder;
    background-color: #fff; /* Adjust cell background color */
    display: flex;
    align-items: center;
    justify-content: center;
}

#scoreboard {
    width: 100%;
    height: 2rem;
    border: solid 3px rgb(236, 230, 230);
    background-color: black;
    color: bisque;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-size: 1.5rem;
}

#play-again {
    display: block;
    margin: 1rem auto; 
    width: 150px;
    height: 50px;
    border-radius: 20px;
    background-color: black;
    color: bisque;
    font-size: 1.3rem;
    cursor: pointer;
}

#play-again:hover {
    background-color: bisque;
    color: black;
}
