     html {
            background: #ffffff;
        }
        
        ::selection { 
            background-color: rgba(21, 0, 255, 0.2); 
        }
        
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f8f9fa;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #e9ecef;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #dee2e6;
        }
        
        body {
            margin: 0;
            padding: 40px;
            font-family: serif;
            color: #2A3129;
            line-height: 1.6;
        }
        
        .park {
            position: relative;
            height: 80px;
            margin-top: 20px;
            overflow: hidden;
        }
        
        .person {
            position: absolute;
            font-family: monospace;
            font-size: 11px;
            white-space: nowrap;
            text-align: center;
            line-height: 1;
        }
        
        .person1 {
            animation: walk1 28s linear infinite;
            color: #1500ff;
        }
        
        .person2 {
            animation: walk2 22s linear infinite;
            animation-delay: -3s;
            color: #00ff04;
        }
        
        .person3 {
            animation: walk3 20s linear infinite;
            animation-delay: -6s;
            color: #00bbff;
        }

        .person4 {
            animation: walk4 23s linear infinite;
            animation-delay: -9s;
            color: #ff0000;
        }

        .person5 {
            animation: walk5 23s linear infinite;
            animation-delay: -12s;
            color: #ff00e6;
        }
        
        @keyframes walk1 {
            0% { left: -30px; top: 10px; }
            25% { left: 50%; top: 10px; }
            50% { left: 80%; top: 40px; }
            75% { left: 30%; top: 40px; }
            100% { left: -30px; top: 10px; }
        }
        
        @keyframes walk2 {
            0% { left: 100%; top: 20px; }
            30% { left: 20%; top: 20px; }
            60% { left: 60%; top: 50px; }
            100% { left: 100%; top: 20px; }
        }
        
        @keyframes walk3 {
            0% { left: 40%; top: 60px; }
            40% { left: 90%; top: 30px; }
            80% { left: 10%; top: 15px; }
            100% { left: 40%; top: 60px; }
        }

        @keyframes walk4 {
            0% { left: 20%; top: 60px; }
            40% { left: 10%; top: 30px; }
            80% { left: 100%; top: 15px; }
            100% { left: 20%; top: 60px; }
        }

        @keyframes walk5 {
            0% { left: 90%; top: 10px; }
            40% { left: 30%; top: 55px; }
            80% { left: 76%; top: 15px; }
            100% { left: 90%; top: 20px; }
        }
        
        .page {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .left-column {
            flex: 1;
            min-width: 300px;
        }
        
        .right-column {
            flex: 1;
            min-width: 300px;
            border-left: 1px solid #1500ff;
            padding-left: 60px;
        }
        
        h1 {
            font-size: 72px;
            color: #1500ff;
            line-height: 0.9;
        }
        
        .info {
            background: #1500ff;
            color: white;
            padding: 20px;
            margin-bottom: 40px;
            font-size: 18px;
        }
        
        .description {
            font-size: 20px;
            margin-bottom: 40px;
            color: #2A3129;
        }
        
        .q {
            color: #1500ff;
            font-weight: bold;
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        .a {
            color: #2A3129;
            font-size: 15px;
        }
        
        a {
            color: #1500ff;
            text-decoration: underline;
        }
        
        a:hover {
            color: cornflowerblue;
        }

        
            @media (max-width: 768px) {
            body {
                padding: 20px;
            }
            
            .page {
                flex-direction: column;
                gap: 30px;
            }
            
            .right-column {
                border-left: none;
                border-top: 1px solid #1500ff;
                padding-left: 0;
                padding-top: 30px;
            }
            
            h1 {
                font-size: 48px;
            }
            
            .park {
                height: 60px;
            }
            

        }