        @import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Sans&family=Libre+Baskerville:wght@700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');

        body {
            margin: 0;
            padding: 0;
            background-color: #abb8c3;
            color: #333;
        }

        header {
            font-family: 'Hedvig Letters Sans', sans-serif;
            font-family: 'Libre Baskerville', serif;
            background-color: #3498db;
            padding: 1em;
            text-align: center;
            color: white;
            font-size: 2em;
        }

        nav {
            font-family: 'Hedvig Letters Sans', sans-serif;
            font-family: 'Libre Baskerville', serif;
            background-color: #2c3e50;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }

        nav a {
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        nav a:hover {
            background-color: #34495e;
        }

        @media screen and (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: center;
            }

            nav a {
                width: 100%;
                box-sizing: border-box;
            }
        }

        .nav-links {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .nav-links li {
            margin: 0 15px;
        }

        .content {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        .section {
            font-family: Arial, Helvetica, sans-serif;
            text-align: center;
            margin-bottom: 30px;
        }

        .projects {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .project {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background: #fff;
            width: 300px;
            margin: 10px;
            border: 4px solid #3498db;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .project:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .project img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }

        .project-content {
            padding: 20px;
            text-align: center;
        }

        .project h3 {
            color: #3498db;
            margin-bottom: 10px;
            font-size: 1.5em;
        }

        .project p {
            color: #555;
            margin-bottom: 0;
        }

        .project-details {
            padding: 10px;
            background-color: #f2f2f2;
            border-radius: 0 0 10px 10px;
        }

        .details-label {
            font-weight: bold;
            color: #333;
        }

        .details-value {
            color: #555;
        }

        .button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease-in-out;
        }

        .button:hover {
            background-color: #57bcff;
        }

        .content {
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        .section {
            margin-bottom: 30px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .social-icons a {
            font-size: 2em;
            margin: 0 10px;
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s ease-in-out;
        }

        .social-icons a:hover {
            color: #2980b9;
        }

        footer {
            background-color: #2c3e50;
            padding: 1em;
            text-align: center;
            color: white;
            position: relative;
            bottom: 0;
            width: auto;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }