    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

    body {
        background-color: hsl(0, 0%, 8%);
        font-family: 'Inter', sans-serif;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        padding: 20px;
    }

    .card {
        border-radius: 8px;
        background-color: hsl(0, 0%, 12%);
        display: flex;
        flex-direction: column;
        padding: 25px;
        justify-content: center;
        align-items: center;
        max-width: 350px;
        width: 100%;
        text-align: center;
    }

    .card img {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        margin-bottom: 15px;
    }

    .Aname {
        color: hsl(0, 0%, 100%);
        font-weight: 700;
        margin-bottom: 6px;
        font-size: 23px;
    }

    .city {
        color: hsl(75, 94%, 57%);
        font-weight: 400;
    }

    .title {
        color: hsl(0, 0%, 100%);
        margin: 22px 0 15px 0;
    }

    .social-title {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .social-title button {
        border: none;
        background-color: hsl(0, 0%, 20%);
        color: hsl(0, 0%, 100%);
        border-radius: 8px;
        width: 100%;
        padding: 12px 20px;
        font-weight: 600;
        transition: 0.3s ease;
    }

    .social-title button:hover {
        background-color: hsl(75, 94%, 57%);
        cursor: pointer;
        color: hsl(0, 0%, 12%);
    }

    /* Responsive for small devices */
    @media (max-width: 400px) {
        .card {
            padding: 20px;
        }

        .Aname {
            font-size: 20px;
        }

        .social-title button {
            padding: 10px 16px;
            font-size: 13px;
        }
    }