 body {
            display: grid;
            grid-template-rows: auto 1fr auto;
            justify-items: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background: linear-gradient(135deg, #71b7e6, #9b59b6);
            font-family: Arial, sans-serif;
            overflow: hidden;
        }
        h6 {
            text-align: center;
            color: white;
            margin: 10px;
        }
        canvas {
            border: 2px solid #333;
            background: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            width: 100%;
            max-width: 400px;
            height: auto;
        }
        .controls {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        button {
            padding: 10px 20px;
            margin: 10px;
            border: none;
            background-color: #4CAF50;
            color: white;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
        }
        button:hover {
            background-color: #45a049;
        }
        .score {
            position: absolute;
            top: 10px;
            left: 10px;
            color: white;
            font-size: 24px;
        }
        .settings {
            display: grid;
            grid-template-columns: auto auto;
            gap: 10px;
            align-items: center;
            margin-top: 20px;
            width: 100%;
        }
        .settings label {
            color: white;
        }
        @media (max-width: 600px) {
            .score {
                font-size: 18px;
            }
            button {
                font-size: 14px;
                padding: 8px 16px;
            }
            h6 {
                font-size: 16px;
            }
        }
		h6{color:black;}
