:root {
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1;
    /* fix for Chrome */

    --text-color: white;
    --link-color: lightblue;

    p {
        margin: 0;
    }

    p+p {
        margin-top: 1rem;
    }

    h1 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 1.8rem;
    }

    h2 {
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
    }

    *+h2 {
        margin-top: 1rem;
    }

    h1+h2 {
        margin-top: 0.5rem;
    }

    line-height: 1.3;
}

@supports (font-variation-settings: normal) {
    :root {
        font-family: InterVariable, sans-serif;
    }
}

html,
body {
    color: var(--text-color);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    background-color: black;
    min-height: 100%;
    min-width: 100%;
    margin: 0;
}

.link-button {
    color: var(--link-color);
    text-decoration: none;
    outline: 0.1rem solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 0.2rem;
    background-color: rgb(255 255 255 / 0.05);
    line-height: 3rem;
    margin-right: 0.5rem;
    white-space: nowrap;

}

a {
    color: var(--link-color);
    text-decoration: none;
}

.link-button:hover {
    background-color: rgb(255 255 255 / 0.2);
    outline-style: outset;
}

.link-button:focus {
    outline: 0.1rem solid rgba(255, 255, 255, 0.9);
    outline-style: outset;
}

.section:focus {
    outline: 0.1rem solid rgba(255, 255, 255, 0.9);
    outline-style: outset;

}

.wrapper {
    max-width: 45rem;
}

.logo>img {
    border-radius: 1rem;
    max-height: 5rem;
}

.header {
    display: flex;
    justify-content: center;

    .name {
        align-self: center;
        margin-left: 3rem;
        font-size: 2.5rem;
    }
}

.bio {
    font-size: 1rem;
}

.section {
    backdrop-filter: blur(3px);
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin: 1rem;
    background-color: rgb(255 255 255 / 0.05);
}
