body{ 
    overflow: hidden;
    font-family: outfit, sans-serif;
    font-size: 16px;
    background-color: #141414;
}
.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.profile-card {
    width: 90%;
    max-width: 300px;
    height: auto;
    background-color: #1F1F1F;
    color: #fff;
    border-radius: 15px;
    /* box-shadow: 10px 10px 0 #000; */
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.social-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.profile-image{
    width: 100px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}
.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
}
.location {
    font-size: 1rem;
    color: #97bc2a;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 10px;
}
.role{
    font-size: 1rem;
    font-weight: 400;
    color: #ffffffa5;
}
.github,.frontend-mentor,.linkedin,.twitter,.instagram{
    width: 300px;
    height: 50px;
    margin: 8px 0;
    font-weight: 700;
    object-fit: cover;
    background-color: #333333;
    transition: transform 0.3s ease;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}