:root {
    font-family: Inter, sans-serif;
    font-feature-settings: "liga" 1, "calt" 1;
}

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

body {
    background-attachment: fixed;
    background-size: cover;
    font-family: "Inter", sans-serif;
    text-align: left;
    max-width: 750px;
    margin: 0 auto;
    padding: 20px 20px 25px 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

b {
    font-weight: 500;
}

nav {
    display: flex;
    justify-content: space-between;
    font-size:14px;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a {
    opacity: 0.5;
    text-decoration: none;
}

.nav-links a:hover {
    opacity: 0.75;
}

.nav-brand {
    font-weight: 500;
    margin-right: 15px;
}

.welcome-font {
    max-width: 90%;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

img {
    border-radius: 7px;
    width: 150px;
    height: 150px;
}

hr {
    width: 100%;
}

.update-metadata {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    opacity: 0.5;
    letter-spacing: 0.25px;
}

a:link {
    opacity: 0.83;
}

a:hover {
    opacity: 0.67;
}

a:visited {
    opacity: 0.5;
}

.heading-body-line-height {
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 10px;
}

footer {
    font-size: 10px;
    letter-spacing: 0.25px;
    opacity: 0.5;
    margin-top: auto;
}