html, body {
    min-height: 100vh;
}
html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: calc(15px + 0.090625vw);
    line-height: calc(1.5 + 0.090625vw);
    text-align: left;
    background-image: url('https://images.unsplash.com/photo-1491002052546-bf38f186af56?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1808');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
body {
    background: var(--body-bg-color);
    color: var(--body-txt-color);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 1rem;
}
a:link, a:active, a:visited {
    text-decoration:none;
    transition:all 0.5s ease-in-out;
    cursor:pointer;
    color: var(--body-lnk-color);
}
a:hover {
    text-decoration:underline;
    color: var(--body-lnk-hov-color);
}
p {
    margin: 0 0 0.7em 0;
    padding: 0;
}
* > p:last-child {
    margin: 0;
}
small {
    font-size: 0.8em;
}
large {
    display: block;
    margin: 0 0 0.4em 0;
    font-weight: bold;
    text-transform: uppercase;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.3em 0;
    text-transform: uppercase;
    color: var(--body-lnk-hov-color);
}
section {
    width: 100%;
}
section#travel {
    width: 2px !important;
    height: 5vh;
    overflow: hidden;
    background: var(--section-bg-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 1rem rgba(0,0,0,0.15);
}
section#floating-container {
    border-radius: 1rem;
    overflow: hidden;
    background: var(--section-bg-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 1rem rgba(0,0,0,0.15);
}
section#floating-container .header {
    background-image: url('https://images.unsplash.com/photo-1491002052546-bf38f186af56?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1808');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
section#floating-container.intro .avatar {
    padding: 2rem;
    flex-grow: 1;
}
section#floating-container.intro .avatar > img {
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-width: 250px;
    max-height: 250px;
    display: block;
    box-shadow: 0 0 1rem rgba(0,0,0,0.15);
}
section#floating-container.intro .title {
    text-transform: uppercase;
}
section#floating-container.intro .name h1 {
    margin: 0.5em 0 0 0;
    text-transform: uppercase;
    font-weight: bolder;
}
section#floating-container.intro .links {
    margin-top: 1em;
    font-size: 0.8em;
}
section#floating-container.intro .links a {
    display: inline-block;
    margin-right: 1em;
}
section#floating-container .content {
    background: var(--section-bg-color);
    backdrop-filter: blur(10px);
    padding: 2rem;
}
section#floating-container #footer {
    backdrop-filter: blur(10px);
    padding: 2rem;
    font-size: 0.8em;
    text-align: center;
}
section#floating-container #footer a {
    display: inline-block;
    margin-right: 1em;
    text-transform: uppercase;
}
section#floating-container #footer a:last-child {
    margin-right: 0;
}