header{
    font-size: 50px;
}

main {
    text-align: center;
    font-family: "Trebuchet MS", serif;

}

table {
    width: 600px;
    height: 10px;
    border-collapse: collapse;
    margin: auto;
}

th, td {
    border: 5px solid black;
    width: 100px;
    height: 60px;

}

td {
    cursor: pointer;
}

.cell-style {
    font-family: "Trebuchet MS", serif;
    font-size: 50px;

}

.yellow-win {
    background-color: #CCCC00;
}
.red-win {
    background-color: #8B0000;
}

button {
    font-size: 18px;
    padding: 10px 20px;
    margin-top: 15px;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}




@media (max-width: 768px) {
    header {
        font-size: 30px;
    }

    table {
        width: 400px;
        height: 100px;
        border-collapse: collapse;
        margin: auto;
    }

    th, td {
        border: 5px solid black;
        width: 100px;
        height: 60px;

    }
}
