@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, sans-serif;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container{
    text-align: center;
}

h1{
    margin-bottom: 20px;
    font-family: "Kanit", sans-serif;
    font-size: 50px;
    color: #333;
}

.game-board{
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 10px;
    margin-bottom: 20px;
}

.cell{
    width: 100px;
    height: 100px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Kanit", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #333;
}

.cell:hover{
    background-color: #f1f1f1;
}

#resetButton{
    font-family: "Kanit", sans-serif;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 10px;
    background-color: black;
    color: white;
}

#resetButton:hover{
    background-color: #242424;
}

#gameStatus{
    font-size: 1.2rem;
    color: #555;
}