 body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0;
            padding: 20px;;
        }
        button {
            padding: 10px 20px;
            font-size: 12px;
            color: white;
            background-color: #3086F6;
            border: 2px solid #1d5196;
            border-radius: 5px;
            cursor: pointer;
            margin: 0 auto;
            display: block;
            

           }
        button:hover {
            background-color: #1d5196;
        }
        #game-board {
            display: grid;
            grid-template-columns: repeat(8, 80px);
            grid-template-rows: repeat(8, 80px);
            gap: 2px;
        }
        .cell {
            width: 80px;
            height: 80px;
            background-color: green;
            border: 4px solid black;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #scoreboard {
            display: flex;
            justify-content: space-between;
            width: 400px;
            margin-top: 20px;
            font: 20px Helvetica, sans-serif;
            
        }
        .ResetButton {
            text-align: center;
            margin-top: 20px;
        }