* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: antiquewhite;
            color: white;
            font-family: 'Poppins', sans-serif;
            background-image: url(bg-image.avif);
            background-size: cover;
            background-repeat: no-repeat;
        }

        .nav {
            background-color: white;
            padding: 20px 0;
        }

        .nav-center ul {
            position: fixed;
            display: flex;
            justify-content: center;
            gap: 2rem;
            background: rgba(255, 255, 255, 0.75);
            padding: 0.4rem;
            top: 0px;
            width: 100%;
            z-index: 10;
        }

        .nav-center ul li {
            margin: 0 15px;
        }

        .nav-center ul li a {
            text-decoration: none;
            color: black;
            font-size: 25px;
        }

        .cover-img img {
            width: 100%;
            height: auto;
        }

        .center-img {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
        }

        .center-img img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 5px solid white;
        }

        .portfolio {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            padding: 2rem;
        }

        .portfolio-left {
            flex: 1;
        }

        .portfolio-right {
            flex: 2;
        }

        .portfolio .container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .portfolio .container .box {
            width: 100%;
            margin: 0;
        }

        .portfolio img {
            max-width: 100%;
            height: auto;
            border: 5px solid black;
        }

        .portfolio .container .box {
            background-color: white;
            position: relative;
            width: 95%;
            border: 2px solid black;
            padding: 10px;
            color: black;
        }

        .portfolio .container .box a {
            text-decoration: none;
            color: black;
        }

        .parent-about {
            background-color: antiquewhite;
            background-image: url(about-me-bg.jpeg);
            background-size: cover;
            background-repeat: no-repeat;
        }

        .about {
            padding: 50px;
            background-color: white;
            text-align: justify;
            border: 4px solid blue;
            margin: 5% auto;
            max-width: 800px;
            font-size: 25px;
            color: black;
        }

        .about h1 {
            text-align: center;
            font-size: 40px;
            margin-bottom: 20px;
            text-decoration: underline;
        }

        .about p {
            text-align: justify;
            font-size: 25px;
            line-height: 1.5;
        }

        .footer {
            background-color: purple;
            color: white;
            text-align: center;
            padding: 50px;
            margin: 20px 0;
        }

        .socialIcon {
            width: 50px;
            height: 50px;
            margin: 15px;
        }

        .small {
            font-size: 20px;
        }

        @media (max-width: 768px) {
            .nav-center ul li a {
                font-size: 18px;
            }

            .center-img img {
                width: 150px;
                height: 150px;
                position: absolute;
                bottom: -100px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 2;
            }
            .cover-img{
                position: relative;
                width: 100%;
                height: auto;
            }


            .portfolio {
                flex-direction: column;
                gap: 1rem;
            }

            .portfolio-left,
            .portfolio-right {
                flex: unset;
                width: 100%;
            }

            .portfolio .container .box {
                font-size: 14px;
                padding: 5px;
            }

            .about {
                padding: 20px;
                font-size: 18px;
            }

            .about h1 {
                font-size: 30px;
            }

            .footer {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .nav-center ul {
                gap: 1rem;
                padding: 1rem;
                height: 5px;
                align-items: center;
            }

            .portfolio img {
                max-width: 90%;
            }

            .portfolio .container .box {
                font-size: 12px;
            }
        }