body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #ffffff;
    background-color: #141414;
    line-height: 1.4;
}

.container {
    max-width: 1440px;
    padding: 0 25px;
}

.profile-card {
    margin: 40px auto;
    background-color: #1f1f1f;
    width: 384px;
    padding: 40px;
    border-radius: 15px;

    text-align: center;
}

.profile-card__img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.profile-card__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.profile-card__location {
    color: #c5f82a;
    font-weight: 700;
    margin-bottom: 25px;
}

.profile-card__social-list {
    margin-top: 25px;
}

.profile-card__social-list li {
    height: 45px;
    margin-bottom: 15px;

}

.profile-card__social-link {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 40px;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: #333333;

    font-weight: 700;
    letter-spacing: 0.3px;

    transition: background-color 0.3s ease-in,
        color 0.3s ease-in;
}

.profile-card__social-link:hover {
    background-color: #c5f82a;
    color: #333333;
}

footer {
    padding: 20px 0;
}

.attribution {
    width: max-content;
    margin: 0 auto;
}

.attribution__link {
    color: #c5f82a;
}

.attribution__link:hover {
    color: #7da701;
}