@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');


body {
    background-color: #141414;
}

.outer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 98vh;
}

.profile-card {
    height: 560px;
    width: 330px;
    border-radius: 10px;

    background-color: #1f1f1f;
    font-family: "Inter";

}

.profile-card img {
    height: 80px;
    margin-left: 125px;
    margin-top: 30px;
}

.name {
    text-align: center;
    margin-bottom: -15px;
    color: #f1f1f1;
}

.location {
    text-align: center;
    color: hsl(75, 94%, 57%);
    ;
}

.profession {
    text-align: center;
    color: #f1f1f1;
}

.socialbtn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.git,
.fig,
.ig,
.li,
.yt,
.wa {
    height: 40px;
    width: 230px;
    border-radius: 5px;
    background-color: #333333;
    color: white;
    border: 1px solid #141414;
    font-family: "Inter";
    font-weight: bolder;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.git:hover {
    transform: scale(1.2);
    color: hsl(75, 94%, 57%);
}

.fig:hover {
    transform: scale(1.2);
    color: hsl(75, 94%, 57%);
}

.ig:hover {
    transform: scale(1.2);
    color: hsl(75, 94%, 57%);
}

.li:hover {
    transform: scale(1.2);
    color: hsl(75, 94%, 57%);
}

.yt:hover {
    transform: scale(1.2);
    color: hsl(75, 94%, 57%);
}

.wa:hover {
    transform: scale(1.2);
    color: hsl(75, 94%, 57%);
}