        body {
            font-family: Arial, sans-serif;
            background-color: #e6f7ff; 
            margin: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        h1 {
            color: #007BFF; 
            margin-bottom: 30px;
            font-size: 2.5em;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        h2 {
            color: #333; 
        }

        ul {
            list-style-type: none;
            padding: 0;
        }

        li {
            margin: 10px 0;
        }

        input {
            margin-right: 10px;
        }

        .project-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            display: flex;
            align-items: center; 
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 16px;
            margin: 10px;
            cursor: pointer;
            transition: transform 0.2s;
            width: 300px; 
            background-color: white; 
        }

        .project-card:hover {
            transform: scale(1.05);
        }

        .project-card img {
            width: 50px; 
            height: 50px;
            margin-right: 15px;
            border-radius: 5px;
        }

        .project-card h2, .project-card p {
            margin: 0;
            text-align: left;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        footer {
            text-align: center;
            margin-top: 40px;
            color: #555;
        }

        footer a {
            color: #007BFF; 
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }