@font-face {
 font-family: 'Clash Display';
 src: url('font/ClashDisplay-Variable.woff2') format('woff2-variations');
 font-weight: 125 950;
 font-stretch: 75% 125%;
 font-style: normal;
}
@font-face {
 font-family: 'Clash Grotesk';
 src: url('font/ClashGrotesk-Variable.woff2') format('woff2-variations');
 font-weight: 125 950;
 font-stretch: 75% 125%;
 font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: #1d1d1d;
    color: #E5E5E5;
    font-family: "Clash Grotesk";
}

.noscroll {
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

canvas {
    top: 0;
    left: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
/*    overflow: hidden;*/
    z-index: -1;
    padding: 0;
    margin: 0 auto;
    display: block;
    opacity: 0.4;
}

.bg {
    position: fixed;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
/*    background: #1d1d1d url("bg.png") no-repeat fixed center;*/
    background: #E5E5E5;
    background-size: cover;
/*    display: none;*/
    z-index: 99998;
    pointer-events: none;
}

svg {
    transform-origin: center center;
/*    mix-blend-mode: difference;*/
}
#logo {
/*  top: calc(50vh - 30px);*/
  width: 250px;
    overflow: visible;
}

.intro-anim span{ 
    display: inline-block;
/*    mix-blend-mode: difference;*/

}

.flex-content {
  text-align: center;
    width: 800px;
    max-width: 90vw;    
}

h1,h2,h3,h4,h5,h6 { 
    font-family: "Clash Display";
    font-weight: 480; 
}

h1 {
    font-size: 62px;
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 42px;
    }
}



.flex-container {
    position: relative;
    width: 100vw;
    height: 99vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    z-index: 10;
}

.button {
    display: inline-block;
/*    font-family: "Clash Display";*/
    padding: 12px 30px;
    font-size: 17px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 30px;
    text-decoration: none;
    background: rgba(255,255,255,.8);
    color: inherit;
/*    mix-blend-mode: exclusion;*/
    font-weight: 480;
    color: #1d1d1d;
/*    letter-spacing: 3px;*/
/*    text-transform: uppercase;*/
    transition: background 250ms ease;
    opacity: 0;
}
.button:hover {
        background: rgba(255,255,255,.5);

    border-color: rgba(0,0,0,.4);
opacity: 1;
/*        letter-spacing: 5px;*/


}