body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url("./media/TTTBackground.png");
    background-size: cover;
    background-position: center;
}

#gameContainer {
    background: white;
    padding: 20px;
    border: 5px solid #000;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#cellContainer {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: fit-content;
    margin: 20px auto;
}

.cell {
    width: 75px;
    height: 75px;
    border: 2px solid black;
    box-shadow: 0 0 0 2px;
    line-height: 75px;
    font-size: 50px;
    text-align: center;
    cursor: pointer;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: #000;
    color: white;
}