body {
    background-color:  hsl(0, 0%, 8%);
    justify-content: center;
    align-items: center;
    display: flex;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    height: 100vh;
}

.card {
    background-color: hsl(0, 0%, 12%);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.profile-img {
    border-radius: 50px;
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
}

.name {
    color: hwb(0 100% 0%);
    font-family: 'Inter',sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0;
}

.address {
    color: hsl(75, 94%, 57%);
    font-family: 'Inter',sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.role {
    color: hwb(0 100% 0%);
    font-family: 'Inter',sans-serif;
    font-size: 14px;
}

.link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tab {
    background-color: hsl(0, 0%, 20%);
    border-radius: 5px;
    height: 40px;
    color: hwb(0 100% 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.tab:hover,
.tab:active {
  background-color: hsl(75, 94%, 57%);
  color: black;
}