* {
    margin: 0;
    padding: 0;
}

:root {
--Green: hsl(75, 94%, 57%);
--White: hsl(0, 0%, 100%);
--Grey-700: hsl(0, 0%, 20%);
--Grey-800: hsl(0, 0%, 12%);
--Grey-900: hsl(0, 0%, 8%);

}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: var(--Grey-900);
}

li {
    text-decoration: none;
    list-style: none;
}

.card {
    padding: 20px;
    border-radius: 15px;
    width: 200px;
    background-color: var(--Grey-800);
}

.card .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card .profile .profile-image {
    width: 100%;
    border-radius: 1000px;
    max-width: 80px;
    margin-bottom: 30px;
}

.card .profile .profile-name{
    font-weight: 600;
    color: var(--White);
    font-size: 16px;
    margin-bottom: 5px;
}

.card .profile .profile-address {
    color: var(--Green);
    font-size: 10px;
    font-weight: 300;
    margin-bottom: 10px;
}

.card .profile .profile-desc {
    color: var(--White);
    font-size: 11px;
    font-weight: 300;
    margin-top: 8px;
    margin-bottom: 10px;
}

.link {
    display: flex;
    flex-direction: column;
}

.link .link-link {
    color: var(--White);
    font-size: 12px;
    text-align: center;
    padding: 10px;
    background-color: var(--Grey-700);
    border: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.link .link-link:hover {
    background-color: var(--Green);
    cursor: pointer;
    color: #000;
}

.attribution { font-size: 11px; text-align: center; color: white;}
.attribution a { color: hsl(228, 45%, 44%); }