@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/static/Inter-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/Inter-VariableFont_slnt\,wght.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/static/Inter-Regular.ttf');
    font-weight: 400;
}

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: hsl(0, 0%, 8%);
    color: hsl(0, 0%, 100%);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /* justify-items: center; */
    justify-content: center;
    align-items: center;
    align-self: center;
    height: 100vh;
    margin: 0;
}

.card {
    background-color: #1f1f1f;
    padding: 37px;
    border-radius: 10px;
    width: 272px;
    height: 476px;
}

.user-photo {
    justify-self: center;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
}

.user-name {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 21px;
    text-align: center;
    margin-top: 28px;
}

.user-add {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #c5f82a;
    margin-top: 14px;
}

.user-job {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    margin-top: 30px;
}

.social-links {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    margin-top: 11px;
    
}

.link {
    background-color: #333333;
    height: 40px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 13px;
}

.link:hover {
    background-color: #c5f82a;
    color: #1f1f1f;
    cursor: pointer;

}