body {
    position: relative;
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

table {
    margin: 20px auto;
    border-collapse: collapse;
}

td {
    width: 60px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ccc;
}

a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

img {
    width: 50px;
    height: 50px;
}

h1 {
    color: #333;
    margin-top: 20px;
}

button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #e0e0e0;
}

@media only screen and (max-width: 800px) {
    body {
        top: 10%;
    }
    table {
        margin: 10px auto;
    }
    td {
        width: 40px;
        height: 40px;
    }
    img {
        width: 30px;
        height: 30px;
    }
    h1 {
        margin-top: 10px;
        font-size: 50px;
    }
}

/* End of styles/ttt-game-style.css */