.inter-<uniquifier> {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

body {
    background-color: #151515;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
    font-family: Inter;
}

.container {
    min-height: 200px;
    width: 450px;
    border: 1px solid rgba(223, 223, 223, 0.068);
}

.card {
    max-width: 100%;
    border: 1px solid rgba(223, 223, 223, 0.068);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 25px;
}

.userdata {
    display: flex;
    align-items: center;
    gap: 16px
}

.card img {
    width: 60px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 100%;
}

.name {
    font-size: 1.2rem;
    font-weight: bold;
    justify-content: left;
}

.username {
    font-weight: lighter;
    font-size: 1rem;
}

.follow {
    font-family: Inter;
    font-size: 1rem;
    font-weight: bold;
    color: #202020;
    background-color: rgb(225, 225, 225);
    border: 1px solid rgba(223, 223, 223, 0.274);
    border-radius: 20px;
    padding: 10px 25px;
    transition: 0.2s all ease-in-out;
    min-width: 128px;

    &:hover {
        background-color: white;
    }

    &::before {
        content: "Follow";
    }
}

.following {
    background-color: transparent;
    color: white;

    &::before {
        content: "Following";
    }

    &:hover {
        background-color: rgba(143, 20, 20, 0.164);
        color: white;

        &::before {
            content: "Unfollow";
        }
    }
}