* {
    box-sizing: border-box;
    /* testing purposes */
    /* border: 1px solid black;
    outline-offset: -1px; */
    overflow: visible;
}


/* fit all content */

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'NeueMachina';
    src: url("/NeueMachina-Bold.92de0841.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'NeueMachina';
    src: url("/NeueMachina-Regular.04374164.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BasisGrotesque';
    src: url("/BasisGrotesqueProRegular.1c133d45.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BasisGrotesque';
    src: url("/BasisGrotesqueProMedium.19ab78e2.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
}

:root {
    --bg-dark: #101010;
    --accent-color: #FF99B2;
    --accent-color2: #85AEFF;
    --text-light: #EBE6EA;
    --text-light-secondary: #EBE6EA66;
    --text-light-inactive: #EBE6EA40;
    --text-dark: #151515;
    --font-family-NM:'NeueMachina', Courier, monospace;
    --font-family-body:'BasisGrotesque', Helvetica, Arial, sans-serif;
    --transition-fade: all 0.2s ease-in-out;
    --color-cyoa: #00D6D6;
    --color-site: #7BFF70;
    --color-spec: #FAA593;
    --color-mend: #9999FF;
    --color-esports: #FF6666;
    --color-art: #FFCC66;
}

.nav-item,
#nav-name,
h1,
.sub-text,
h2,
h3,
.role-text {
    font-family: var(--font-family-NM);
    text-transform: lowercase;
}


/* all elements within body to take these */

body {
    font-size: 0.9rem;
    letter-spacing: 0.16px;
    line-height: 1.5rem;
    color: var(--text-light);
    text-rendering: optimizeLegibility;
    background-color: var(--bg-dark);
    background-image: url(http://api.thumbr.it/whitenoise-500x600.png?background=101010ff&noise=626262&density=10&opacity=10);
    border: none;
    margin: 0;
    font-family: var(--font-family-body);
    font-weight: normal;
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #242424;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

h1 {
    color: var(--text-light);
    font-size: 3rem;
    line-height: 2.5rem;
    margin: 0.5rem 0 1.2rem 0;
    width: 100%;
}

h2 {
    font-size: 2rem;
    line-height: 2.2rem;
    margin: 0.2rem 0 0 0;
    text-transform: lowercase;
    color: var(--text-light);
    font-weight: normal;
}

.sub-text {
    color: var(--text-light-secondary);
    font-size: 0.7rem;
    letter-spacing: 0.06rem;
    font-weight: normal;
    text-transform: uppercase;
    transition: var(--transition-fade);
}

.role-text {
    font-size: 0.9rem;
    margin: 0;
    text-transform: lowercase;
    color: var(--text-light);
    font-weight: normal;
}

#cyoa {
    color: var(--color-cyoa);
}

#sitedev {
    color: var(--color-site);
}

#spec {
    color: var(--color-spec);
}

#mend {
    color: var(--color-mend);
}

#esports {
    color: var(--color-esports);
}

#art {
    color: var(--color-art);
}

a {
    text-decoration: none;
    color: var(--text-light-secondary);
    font-weight: normal;
}

a:hover, a:focus {
    color: var(--accent-color);
}

.aInline {
    color: var(--accent-color);
}
.aInline:hover, .aInline:focus {
    color: var(--accent-color2);
    transition: var(--transition-fade);
}

.pdfLink {
    margin: 1rem 0;
    text-transform: uppercase;
    font-size: 0.8rem;
}

ul, ol {
    list-style: none;
    padding: 0;
    max-width: 40rem;
    margin: 1.2rem 0;
}

ol {
    counter-reset: list-counter;
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
}

ol li {
    counter-increment: list-counter;
    margin-bottom: 0.75rem;
    display: flex;
}

ol li::before {
    display: inline-block;
    width: 1.5rem;
    content: "0" counter(list-counter);
    font-weight: bold;
    margin-right: 0.8rem;
    font-family: var(--font-family-NM);
    color: var(--text-light-secondary);
}

svg {
    max-width: 20px;
    height: 20px;
}

.icon-link {
    fill: var(--text-light-secondary);
    margin-right: 0.5rem;
}

.icon-link:hover,
.icon-link:focus {
    fill: var(--text-light);
    transition: var(--transition-fade);
    font-weight: normal;
    text-decoration: none;
}

p, .tagline {
    max-width: 40rem;
    line-height: 200%;
    widows: 3;
    orphans: 3;
    margin: 0;
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1.5rem;
    line-height: 140%;
}

/* Navigation Bar Menu */

header {
    padding: 1rem;
    position: fixed;
}

#nav-top {
    display: grid;
    position: relative;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 1.5rem;
    z-index: 999;
}

#nav-name,
.nav-bar {
    font-size: .8rem;
    line-height: 1.6rem;
    letter-spacing: 0.06rem;
    font-weight: bold;
    padding: 0.2rem;
}

#nav-name {
    justify-self: start;
    color: var(--text-light);
}

.nav-bar {
    justify-self: end;
    align-self: center;
    z-index: 10;
}


/* individual navigation items */

.nav-item {
    transition: var(--transition-fade);
    color: var(--text-light-inactive);
    width: 100%;
    text-transform: lowercase;
    justify-content: space-between;
    margin-left: 0.75rem;
}


/* changing state of navigation items */

.nav-item:hover,
.nav-item:focus {
    color: var(--accent-color);
    transition: var(--transition-fade);
}

.nav-active {
    color: var(--text-light);
    transition: var(--transition-fade);
}

.breadcrumb {
    font-size: .7rem;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 100%;
    font-weight: normal;
    color: var(--text-light-secondary);
}

/* index styling */

.bg {
    max-width: 100%;
    height: auto;
}

.bg-container {
    position: fixed;
    z-index: -9999;
    width: 125%;
    height: 100%;
    transform: translate(-20%, 0);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    object-fit: scale-down;
}

.index-col {
    display: grid;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: 12% 1fr 12%;
}


#intro {
    margin-top: 10rem;
}

#icon-mono {
    max-width: 20%;
    border-bottom: 1px solid var(--text-light-secondary);
    margin-bottom: 1rem;
}

#about-bio {
    margin: 3rem 0;
    letter-spacing: 0.2px;
}

#about-bio p {
    margin-bottom: 1.5rem;
}

#name-tag {
    font-size: 1.9rem;
    color: var(--text-light);
    display: inline-block;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--text-light-secondary);
    width: 100%;
}

#about-title {
    font-size: 0.65rem;
    text-transform: lowercase;
    letter-spacing: 0.03rem;
    background-color: var(--accent-color);
    background: linear-gradient(60deg, var(--accent-color), var(--accent-color2));
    background: -webkit-linear-gradient(60deg, var(--accent-color), var(--accent-color2));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#work-title {
    position: relative;
    margin: 10vh 0 2rem 0;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--text-light-secondary);
}

#work-list {
    position: relative;
    margin: 2rem 0;
}

.work-parent {
    align-self: center;
}

.work-child {
    display: block;
    padding: 0.75rem 0;
}

.arrow-container, .arrow-top {
    stroke: var(--text-light-secondary);
    stroke-width: 1.5;
    padding: 1.5rem;
    margin: 25% 0 0 -25px;
    /* border-radius: 100%; */
}

.arrow-container {
    display: none;
}

.arrow-top {
    display: block;
    position: fixed;
    transform: rotate(180deg);
    right: 2rem;
    bottom: 1.5rem;
}

.arrow-top:focus, .arrow-top:hover {
    stroke: var(--text-light);
}

#arrow {
    position: absolute;
    width: 100%;
}

.work-detail {
    margin: 0 auto 3rem auto;
    width: 80%;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7rem;
}

.work-context {
    margin: 3.5rem 0;
}

.work-row, .role-single {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0.25rem;
}

.art-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    justify-content: center;
    align-content: center;
    height: 100%;
    max-width: 100%;
}

.art-thumb {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    object-position: 0 15%;
}

.art-lower {
    object-position: 0 25%;
}

.art-mid {
    object-position: 0 50%;
}

.art-thumb:hover, .art-thumb:focus  {
    cursor: pointer;
    opacity: 0.5;
    background-color: var(--text-light);
    transition: var(--transition-fade);
}

#lightbox {
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10,10,10,0.75);
    display: none;
}

#lightbox.active {
    display: flex;
    justify-content: center;
    align-content: center;
}

#lightbox img {
    padding: 2rem;
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
}

#landing-image {
    display: block;
    max-width: 50%;
    margin: 3rem auto;
}

.img, img {
    margin: 0;
    max-width: 100%;
}

.img {
    margin: 1rem 0;
}

figcaption {
    font-size: 0.75rem;
    color: var(--text-light-secondary);
}

#footer {
    display: block;
    position: relative;
    text-align: center;
    color: var(--text-light-secondary);
    font-size: 0.6rem;
    letter-spacing: 0.03rem;
    padding: 0.2rem;
    bottom: 0.5rem;
    /* left: 2rem; */
}

/* SLIDESHOWS */
/* Slideshow container */

.slideshow-container {
    max-width: 45%;
    height: 100%;
    position: relative;
    margin: 0 auto;
}

.sslandscape {
    max-width: 100%;
    max-height: 100%;
}

/* Hide the images by default */

.sCrit,
.sLudic,
.sNines,
.sTg,
.sDidz,
.sCyoa,
.sHb,
.sDs {
    display: none;
}

.sCrit>img,
.sLudic>img,
.sNines>img,
.sTg>img,
.sDidz>img,
.sCyoa>img,
.sHb>img,
.sDs>img {
    width: 100%;
    height: 100%;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 1rem;
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.2rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


/* On hover, add a black background color with a little bit see-through */

.prev:hover,
.next:hover {
    background-color: var(--text-light-secondary);
    color: var(--text-light);
    text-decoration: none;
}


/* Number text (1/3 etc) */

.numbertext {
    color: var(--text-dark);
    font-size: .8rem;
    padding: 0.4rem;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0.5rem;
}

.numBg {
    background: linear-gradient(to top, rgba(255, 255, 255, .5) 0%, transparent 100%);
    mix-blend-mode: screen;
    color: var(--text-light);
}

.num-light {
    color: var(--text-light);
}


/* Embedded youtube video */

iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    overflow: hidden;
}

.iframe-container {
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
}


/* Wider Mobile Size Screens: 375px+ */

@media all and (min-width: 23.44rem) {
    
    #name-tag {
        font-size: 2.25rem;
    } 
    
    #about-title {
        font-size: 0.75rem;
    }
}

/* Btwn Mobile and Tablet Size Screens: 590px+ */

@media all and (min-width: 37rem) {
    
    #intro {
        margin-top: 5rem;
    }

    #name-tag {
        font-size: 3rem;
    } 
    
    #about-title {
        font-size: 0.85rem;
    }

    .bg-container {
        width: 90%;
        height: 100%;
        transform: translate(-20%, -2%);
    }
    
    .work-row {
        grid-template-columns: 0.7fr 0.7fr 1fr;
    }
}

/* Tablet Size Screens: 786px+ */

@media all and (min-width: 48rem) {

    
    #intro {
        margin-top: 10rem;
    }

    #nav-top {
        position: fixed;
    }

    .bg {
        max-width: 90%;
    }
    
    .index-col {
        grid-template-columns: 3fr 6fr 3fr;
    }

    .bg-container {
        width: 90%;
        height: 100%;
        transform: translate(-20%, -2%);
    }

    #landing-image {
        max-width: 33%;
        margin: 5rem auto 3rem auto;
    }

    .work-detail {
        width: 70%;
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7rem;
    }


}

/* Avg Size Screens: 1024px+ */

@media all and (min-width: 64rem) {

    #nav-top {
        padding: 2rem 3rem;
    }

    .nav-item {
        margin-left: 1rem;
    }

    .bg {
        max-width: 90%;
    }
    
    .bg-container {
        width: 70%;
        height: 70%;
        transform: translate(-20%, 0);
    }
    
    .index-col {
        grid-template-columns: 5fr 5fr 2.5fr;
    }

    #intro-space {
        height: 100vh;
    }    

    #intro {
        margin-top: 50vh;
    }

    #work-list {
        position: relative;
        height: 100vh;
    }
    
    .arrow-container {
        display: block;
        position: relative;
    }

    .arrow-container:focus, .arrow-container:hover {
        stroke: var(--text-light);
    }

    .work-child {
        display: block;
        padding: 0.9rem 0;
    }

    .work-row {
        grid-template-columns: 0.7fr 0.7fr 1fr 0.5fr;
    }

    .work-detail {
        width: 60%;
        max-width: 100%;
    }


}

/* Avg-Lg Size Screens: 1280px+ */

@media all and (min-width: 80rem) {
    
    #name-tag {
        font-size: 3.5rem;
    } 
    
    #about-title {
        font-size: 1rem;
    }

    .index-col {
        grid-template-columns: 6.25fr 4.5fr 2fr;
    }

}

/* Large Size Screens: 1440px+ */

@media all and (min-width: 90rem) {
    
    .bg-container {
        width: 55%;
        height: auto;
        transform: translate(-20%, 5%);
    }

    .index-col {
        grid-template-columns: 6fr 4fr 2fr;
    }

    .work-row {
        grid-template-columns: 0.7fr 0.7fr 1fr 0.5fr;
    }

}

/*# sourceMappingURL=/main.c52e0fe2.css.map */