:root {
    --color-brand: #ff8000;
    --color-brand-light: #ff972d;
    --color-brand-dark: #d88733;
    --color-brand-contrast: #010101;
    --color-foreground: #efefef;
    --color-background: #111111;

    --body-background-color: #111111;
    --body-background: var(--body-background-color) url(https://res.hinkers.net/img/material.dark.svg) no-repeat center center fixed;

    --font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
    --font-family-monospace: "Roboto Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

    --shadow: 0 0 30px 0 rgba(0, 0, 0, .7);
}

html, body, div, span, h1, h2, h3 {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;

    min-height: 100%;
    font-size: 18px;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: always;

    font-family: var(--font-family);
    font-weight: 300;

    color: var(--color-foreground);
    background: var(--body-background);
    background-size: cover;
}

a {
    color: var(--color-brand);
}

h1, h2, h3 {
    font-weight: normal;
}

h1 {
    font-size: 2em;
}

h2 {
    opacity: .75;

    font-size: 1em;
}

@media (min-width: 768px){
    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 1.5em;
    }
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2em;
    padding-right: 2em;
}

@media (min-width: 768px){
    .container {
        padding-left: 1em;
        padding-right: 1em;
        max-width: 700px;
    }
}

#landing-content {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    margin-top: auto;
  /*  margin-bottom: auto;*/
}

#landing-content .profile {
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px){
    #landing-content .profile {
        width: 35em;
        padding-left: 5.25em;
        text-align: left;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }
}

#landing-content .profile .logo-container {
    background: rgba(0, 0, 0, .64) url(../img/logo.blur.png) no-repeat center center;
    background-size: cover;
    box-shadow: var(--shadow);
}

#landing-content .profile .logo-container,
#landing-content .profile .logo-container img.logo {
    width: 6em;
    height: 6em;
    border-radius: 3.5em;
}

@media (min-width: 768px){
    #landing-content .profile .logo-container,
    #landing-content .profile .logo-container img.logo {
        width: 8em;
        height: 8em;
        border-radius: 5em;
    }
}

#landing-content .profile .logo-container img.logo {
    object-fit: contain;
}

#landing-content .profile .details-container {
    margin-left: 1em;
}


#landing-content .profile .details-container .skillset-container {
    font-family: var(--font-family-monospace);
}

.font-thin {
    font-weight: 300;
}

.font-thick {
    font-weight: 400;
}

footer {
    margin-top: auto;
    padding: .25em 1em;
    background: var(--body-background-color);
    text-align: center;
}

footer > * {
    transition: .5s opacity ease-in-out;
    opacity: .75;
}

footer:hover > *, footer:focus-within > * {
    opacity: 1;
}

@media (min-width: 768px){
    footer {
        padding: .5em 1em;
    }
}

footer a {
    color: var(--color-foreground);
    text-decoration: none;
}

footer ul.links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

footer ul.links li {
    display: inline-block;
}

footer ul.links li::before {
    content: '\2F'; /* "/" */
    color: var(--color-brand-dark);
    font-weight: bold;
}


#skillset-cursor {
    animation: blink .85s infinite;
}

.fab button {
    position: fixed;
    right: 1em;
    bottom: 1em;

    background: #212121;
    color: var(--color-foreground);
    border: 1px solid var(--color-foreground);
    width: 2.5em;
    height: 2.5em;
    border-radius: 1.25em;
}

@media (min-width: 400px) {
    ::-webkit-scrollbar-track, ::-webkit-scrollbar-corner {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #191919;
    }

    ::-webkit-scrollbar {
        width: .5em;
        height: .5em;
        background-color: #F5F5F5;
    }

    ::-webkit-scrollbar-thumb {
        background-color: var(--color-brand);
    }
}
