.header__l1-avatar {
    border-radius: 100%;
}

header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: var(--content-width);
}

main {
    max-width: var(--content-width);
}

.socials {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.social_link_container {
    width: 100%;
}
.social_link {
    background: var(--fg);
    padding: 24px;
    border-radius: 15px;
    display: flex;
    border: 1px solid var(--fg-border);
}
.social_link > img {
    position: relative;
    margin: 0 auto;
}


@media screen and (max-width: 500px) {
    .socials {
        flex-direction: column;
    }
}