@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }   
    body {
        touch-action: pan-x pan-y;
        font-family: "Lexend Deca", sans-serif;
        background: url('assets/background.jpeg') no-repeat center center fixed;
        background-size: cover;
        color: white;
        display: flex;
        justify-content: center;
        min-height: 100vh;
        padding-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
    input, textarea {
        font-size: 16px;
    }
    .container {
        width: 100%;
        max-width: 580px;
    }
    .profile-img {
        width: 96px;
        height: 96px;
        border-radius: 50%;
        background: white;
        overflow: hidden;
        display: inline-block;
    }
    .profile-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .username {
        font-size: 20px;
        font-weight: bold;
        margin-top: 15px;
    }
    .bio {
        font-size: 17px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    .social-icons a {
        display: inline-block;
        width: 30px;
            height: 30px;
            overflow: hidden;
            transition: 0.3s;
        }
        .social-icons a img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .social-icons a:hover {
            transform: scale(1.1);
            opacity: 0.8;
        }
        .link {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border: 2px solid white;
            color: white;
            padding: 15px 20px;
            margin: 15px auto;
            width: 100%;
            border-radius: 15px;
            cursor: pointer;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            transition: 0.3s;
            text-align: left;
        }
        .link:hover {
            background: #010e29;
        }
        .link-content {
            display: flex;
            align-items: center;
            width: 100%;
        }
        .link-icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }
        .link-icon img {
            height: 30px;
            width: auto;
        }
        .link-icon:hover img {
            filter: brightness(0) invert(1); /* Mengubah warna SVG jadi putih */
        }
        .description {
            font-size: 12px;
            opacity: 0.9;
            margin-top: 4px;
        }
        @media (max-width: 480px) {
            .link {
                padding: 10px 15px;
                font-size: 14px;
            }
            .username {
                font-size: 20px;
            }
            .bio {
                font-size: 13px;
            }
        }

        .share-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #1a1a1a; /* Warna background lingkaran */
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%; /* Membuatnya berbentuk lingkaran */
            transition: background 0.3s, transform 0.2s;
        }
        
        .share-btn img {
            width: 20px;
            height: 20px;
            transition: transform 0.2s;
        }
        
        .share-btn:hover {
            background: rgba(255, 255, 255, 0.5); /* Efek hover */
            transform: scale(1.1);
        }
        

