
@font-face {
    font-family: 'HN';
    src: url('../font/StudioPro-SemiBold.woff2') format('woff2'),
         url('../font/StudioPro-SemiBold.woff') format('woff');
    font-display: swap; 
}

:root {
    --content-width: 100%;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    border: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; 
    list-style: none;
}

:focus {
    outline: 0; 
}

article, details, figcaption, figure, footer, header, img, main, menu, section, summary {
    display: block;
}

html {
    margin: 0 auto;
    white-space: normal;
    background: rgb(250, 250, 250);
    color: #fcd015;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

}

body {
    width: 100vw;
    overflow: hidden;
 animation: fadeIn 1s ease-in;
}

.info {
overflow-y: scroll;
}

main {
    height: 100vh;
    height: calc(var(--vh) * 100);
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
}


.info main {
    height: auto;
    padding-top: .5rem;
    overflow-y: auto;
    pointer-events: auto;

}

p, h1, h2, ol, p, ul {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-variant-ligatures: common-ligatures contextual;

  font-feature-settings:
    "liga" 1, 
    "clig" 1,  
    "calt" 1, 
    "ss01" 1; 
}

p {
    font-family: "HN"; 
    font-size: 1rem;
    line-height: 112%;
    letter-spacing: -0.001rem;
    text-align: left;
}


h3 {
    font-family: "HN";
        font-size: 3.25rem;
    letter-spacing: -.025rem;
    line-height: 100%;
}


@media screen and (min-width: 75rem) {
.info main {
padding-top: 1rem;
}

    p {
        font-size: 1.7rem;
        letter-spacing: -.0075rem;
    }

    .info #nav p {
    width: 66.666%;
    }

}

a {
    pointer-events: auto;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    -webkit-transition: color .25s linear;
    -o-transition: color .25s linear;
    transition: color .25s linear;
}

.info main a{
text-decoration: underline;
}

.grey {
color: rgba(0,0,0,.35);
}

a:hover, #portfolio:hover p{
    color: black;
    -webkit-transition: color .25s linear;
    -o-transition: color .25s linear;
    transition: color .25s linear;
}

a:active, a:focus, a:visited {
    text-decoration: none;
    outline: 0;
}

p, h1, h2, h3 {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; 
}



#nav {
z-index: 1;   
pointer-events: none;
}



#background {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
height: calc(var(--vh) * 100);
display: flex;
justify-content: center;
flex-direction: column;
z-index: -1;
}



footer {
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

header {

    padding-top: .5rem;
    z-index: 10;
      position: absolute;
    top: 0;
    left: 0;
    width: 100%;  
}


header .flexbox, main .flexbox, footer .flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; 
    -webkit-box-pack: center; 
        -ms-flex-pack: center; 
            justify-content: center;
    padding-left: .5rem;
    padding-right: .5rem;
}


footer .flexbox {
    padding-bottom: .5rem;
}




img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-height: 90vh;
    height: calc(var(--vh, 1vh) * 90);
    max-width: 90vw;
    width: auto;
    object-fit: contain;
 animation: fadeIn 1s ease-in;
  cursor: pointer;
}


@media screen and (min-width: 60rem) {

#background {
z-index: 10;
}


header {
    padding-top: 1rem;
}
header .flexbox, main .flexbox, footer .flexbox {
    padding-left: .75rem;
    padding-right: .75rem;
}


footer .flexbox {
    padding-bottom: 1rem;
}

img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-height: 75vh;
    max-height: calc(var(--vh, 1vh) * 75);
    max-width: 75vw;
    width: auto;
    object-fit: contain;
    object-position: center;
 animation: fadeIn 1s ease-in;
     pointer-events: auto;
}


}


.flexbox.spacer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.flexbox.spacer.big-only, .big-only {
display: none;
}

.flexbox.spacer.small-only {
display: flex;
}
@media screen and (min-width: 60rem) {
.flexbox.spacer.big-only {
display: flex;
}
.big-only {
display: inline-flex;
}
.flexbox.spacer.small-only {
    display: none;
}
.inliner {
display: inline-flex;
}
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
