body {
cursor: url(https://stinkguts.neocities.org/biggerhandy.png), crosshair;
background-image: url("https://stinkguts.neocities.org/GIF_20250714_012451_064.gif");
background-color: black;
}
.cell {
    width: 100px;
    height: 100px;
    border: 2px solid;
    box-shadow: 0 0 0 2px;
    line-height: 100px;
    color: #588A6C;
    font-size: 50px;
    cursor: url('https://stinkguts.neocities.org/GIF_20250714_031911_591.gif'), crosshair; /* Default cursor for X */
}

#gameContainer {
    font-family: "Permanent Marker", cursive;
    text-align: center;
}

#cellContainer {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 300px;
    margin: auto;
}

.cell img {
    width: 80%; 
    height: auto; 
}

/* Cursor for O */
.player-O .cell {
    cursor: url('https://stinkguts.neocities.org/GIF_20250714_012451_064.gif'), crosshair;
}
