body {
    margin: 0;
    background-color: #f7f7f7;
}

#content {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#avatar {
    height: 128px;
    width: 128px;
    border-radius: 50%;
    border: 3px solid #dddddd;
}

#name {
    font-size: 26px;
    font-weight: 500;
    margin: 20px 0;
    color: #4d5156;
}

#links {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.link {
    height: 40px;
    width: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 2px solid #4d5156;
    border-radius: 50%;
}

.link svg {
    width: 24px;
    height: 24px;
    color: #4d5156;
}

.link:hover {
    background-color: #4d5156;
}

.link:hover svg {
    color: #f7f7f7;
}
