body {
            font-family: 'Fredoka One', sans-serif;
            background: linear-gradient(to bottom, #394a51, #cd6474);
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            box-sizing: border-box;
        }

        #game-container {
            position: relative;
            width: 800px;
            max-width: 95vw;
            height: 400px;
            border: 2px solid #333;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        /* Styling for the game title */
        .game-title {
            position: absolute;
            top: -30px; /* Position above the game container */
            width: 100%;
            text-align: center;
            font-size: 2.25rem;
            font-weight: 800;
            color: #d93571;
            text-shadow: 2px 2px 0 #000;
            background-color: gb(153 153 153 / 70%);
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
        }

        /* Canvas styling */
        #gameCanvas {
            display: block;
            margin: 0 auto;
            width: 100%;
            height: 100%;
        }

        /* Styling for the buttons */
        #startButton, #restartButton {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 10px 20px;
            font-size: 18px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        #startButton:hover, #restartButton:hover {
            background-color: #FF1493;
            transform: scale(1.1) translateX(-45%);
        }
