

      /* Base styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(to right, #e0eafc, #cfdef3);
            color: #333;
            padding: 20px;
        }

        .container {
            max-width: 900px;
            margin: auto;
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Welcome message */
        .welcome {
            text-align: center;
            font-size: 36px;
            color: #4CAF50;
            font-weight: bold;
            margin-bottom: 30px;
            animation: fadeIn 1.5s ease-in-out;
        }

        /* Heading */
        h2 {
            text-align: center;
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        /* About section */
        pre {
            background-color: #f0f4f8;
            padding: 20px;
            border-left: 6px solid #4CAF50;
            border-radius: 8px;
            font-size: 17px;
            line-height: 1.6;
            white-space: pre-wrap;
        }

        /* Divider */
        hr {
            margin: 40px 0;
            border: none;
            border-top: 2px dashed #ccc;
        }

        /* Image */
        a img {
            display: block;
            margin: 0 auto;
            width: 100px;
            border-radius: 10px;
            transition: all 0.3s ease-in-out;
        }

        a img:hover {
            transform: scale(1.1) rotate(2deg);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* Animation */
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive tweaks */
        @media (max-width: 600px) {
            .welcome {
                font-size: 28px;
            }

            pre {
                font-size: 15px;
                padding: 15px;
            }

            a img {
                width: 80px;
            }
        }
    