@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: ubuntu;
            background-color: #121212;
            color: #e0e0e0;
            line-height: 1.6;
        }
        header {
            background: linear-gradient(135deg, #1f1f1f, #3a3a3a);
            color: #ffffff;
            padding: 50px 0 20px 170px ;
            border-bottom: 5px solid #e91e63;
            display: flex;
            flex-wrap: wrap;
        }
        header img {
            margin-right: 40px;
            width: 170px;
            height: auto;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        header .header-text {
            max-width: 900px;
        }
        header h2 {
            font-size: 2.5em;
            margin: 15px 0 5px 0;
        }
        header p {
            font-size: 1.2em;
            padding: 20px 0 0 0;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            background-color: #1f1f1f;
            padding: 10px 0;
            border-bottom: 1px solid #333;
        }
        .navbar-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            transition: scale 500ms, filter 500ms;
        }
        .navbar-list:has(:hover) :not(:hover) {
            scale: 0.8;
            filter: blur(1px);
        }
        .navbar-list li {
            display: inline-block;
        }
        .navbar-list a {
            color: #e91e63;
            text-decoration: none;
            font-size: 1.1em;
            font-weight: bold;
            padding: 10px;
            transition: color 0.3s ease;
        }
        .navbar-list a:hover {
            color: #f50057;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
        }
        .section {
            margin-bottom: 40px;
            background: #1f1f1f;
            border-radius: 10px;
            padding: 17px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
        }
        .section h2 {
            color: #e91e63;
            font-size: 1.8em;
            margin-bottom: 20px;
            border-bottom: 2px solid #e91e63;
            padding-bottom: 10px;
        }
        .section p, .section ul {
            font-size: 1em;
            line-height: 1.8;
        }
        .section ul {
            list-style-type: square;
            padding-left: 200px;
        }
        .section ul li {
            margin-bottom: 10px;
            padding-left: 20px;
        }
        .section ul li img {
            width: 50px;
            height: 50px;
        }

        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .project-card {
            background-color: #333;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            max-width: 300px;
        }
        .project-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .project-card .project-info {
            padding: 15px;
            text-align: center;
        }
        .project-card .project-info h3 {
            color: #e91e63;
            margin-bottom: 10px;
        }
        .section left {
            padding-left: 20px;
        }
        footer {
            background: #1f1f1f;
            color: #e0e0e0;
            text-align: center;
            padding: 15px;
            border-top: 1px solid #333;
        }
        footer p {
            margin: 0;
        }
        .contact-info a {
            color: #e91e63;
            text-decoration: none;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .social-links a {
            font-size: 2.5em; /* Ukuran lebih besar */
            color: #e91e63;
            margin: 0 15px;
            transition: color 0.3s ease, transform 0.2s;
        }

        .social-links a:hover {
            color: #f50057;
            transform: scale(1.2); /* Efek membesar saat hover */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .list-style img {
                width: 40px; /* Ukuran logo lebih kecil untuk layar kecil */
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .list-style img {
                width: 30px; /* Ukuran logo lebih kecil untuk layar sangat kecil */
                height: 30px;
            }
        }

        /* Media Query for Tablet and Mobile */
        @media screen and (max-width: 768px) {
            header {
                flex-direction: column;
                text-align: center;
                padding: 30px 0 0 50px;
            }
            header img {
                width: 120px;
                align-items: center;
                margin: 0 0 0 70px;
            }
            header h2 {
                font-size: 1.8em;
                padding: 0 50px 0 0;
            }
            header p {
                font-size: 1em;
                padding: 0 50px 20px 0;
            }
            .navbar-list {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .navbar-list a {
                font-size: 1em;
            }
            .container {
                padding: 15px;
            }
            .section h2 {
                font-size: 1.5em;
            }
            .section ul li {
                flex-direction:row;
            }
            .section p, .section ul {
                font-size: 0.9em;
            }
            .social-links a {
                font-size: 1.2em;
            }
            .section img {
                padding-top: 2px;
            }
        }