/*
 *   Copyright (c) 2023 
 *   All rights reserved.
 */
body {
    font-family: Arial, sans-serif;
    background-color: #f2e5e5;
    text-align: center;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(56, 5, 225, 0.2);
}

h1 {
    color: #333;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.cell {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    width: 100px;
    height: 100px;
    background-color: #bb1212;
    cursor: pointer;
}

.status {
    font-size: 20px;
    margin-top: 20px;
}

.reset-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
}
