* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {


    --user-color: hsl(
                    var(--user-color-h), 
                    var(--user-color-s), 
                    var(--user-color-l)
                    );
    --hover-user-color: hsl(
                    var(--user-color-h), 
                    var(--user-color-s), 
                    calc(var(--user-color-l) + 7%)
                    );

    

    --user-link-color: hsl(
                    var(--user-link-color-h), 
                    var(--user-link-color-s), 
                    var(--user-link-color-l)
                    );
    --hover-user-link-color: hsl(
                    var(--user-link-color-h), 
                    var(--user-link-color-s), 
                    calc(var(--user-link-color-l) + 7%)
                    );

    background-attachment: fixed;
    background-image: var(--linkbaum-profile-background);
    background-size: cover;
    background-position: center center;
    font-family: sans-serif;
    font-size: 16px;
}

#linkbaum_frame {
    color: var(--user-color);
    display: flex;
    flex-direction: column;
    grid-gap: 30px;
    justify-content: center;
    margin: 5vh auto;
    max-width: 500px;
    padding: 0 20px;
}

#linkbaum_profile {
    align-items: center;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 1.75rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
}

h2 {
    font-size: 1.125rem;
    font-weight: normal;
}

h1,
h2 {
    text-align: center;
}

.linkbaum_heading--white h1,
.linkbaum_heading--white h2,
.linkbaum_heading--white #linkbaum_credits {
    color: #fff;
}

.linkbaum_heading--accentcolor h1,
.linkbaum_heading--accentcolor h2,
.linkbaum_heading--accentcolor #linkbaum_credits {
    color: var(--user-color);
}

.linkbaum_section-heading {
    font-weight: bold;
    margin: 0.5rem 0 0.6rem 0;
}

#linkbaum_profile img {
    --profile-size: 96px;
    border-radius: calc(var(--profile-size) / 2);
    height: var(--profile-size);
    margin-bottom: 1rem;
    width: var(--profile-size);
}

#linkbaum_entries {
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}

#linkbaum_entries a  {
    color: inherit;
    display: flex;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    text-align: center;
    text-decoration: none;
}

.linkbaum_wrapper--linkbuttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.linkbaum_wrapper--linkbuttons > a {
    width: 100%;
}

.linkbaum_linkbutton--round #linkbaum_entries a{
    border-radius: 24px;
}

.linkbaum_linkbutton--halfround  #linkbaum_entries a{
    border-radius: 16px;
}

.linkbaum_linkbutton--angular #linkbaum_entries a{
    border-radius: 5px;
}

.linkbaum_linkbutton--light #linkbaum_entries a{
    background: #fff;
    border: 2px solid var(--user-color);
    color: var(--user-color);
}

.linkbaum_linkbutton--light #linkbaum_entries a:hover {
    border: 2px solid var(--hover-user-color);
    color: var(--hover-user-color);
}

.linkbaum_linkbutton--dark #linkbaum_entries a{
    background: var(--user-color);
    border: 2px solid var(--user-color);
    color: #fff;
}

.linkbaum_linkbutton--dark #linkbaum_entries a:hover {
    background: var(--hover-user-color);
    border: 2px solid var(--hover-user-color);
}

#linkbaum_social {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
    justify-content: center;
    margin: 1rem 0 0 0;
}

#linkbaum_social a {
    display: inline-flex;
}

#linkbaum_social svg {
    fill: var(--user-link-color);
    height: 32px;
    width: 32px;
}

#linkbaum_social svg:hover {
    fill: var(--hover-user-link-color);
}

#linkbaum_credits {
    font-size: 0.6rem; 
    margin-top: 100vh;
    text-align: center;
}