@font-face {
     font-family: 'Neue Haas Grotesk Display Pro 55 Roman';
     font-style: normal;
     font-weight: normal;
     src: local('Neue Haas Grotesk Display Pro 55 Roman'), url('NeueHaasDisplayRoman.woff') format('woff');
}
 :root {
     --img-height: 350px;
     --filter-img: none;
     --link-hover: 0.7s;
     --color-text: #000000;
     --color-bg: #f8f9f6;
     --color-link: #000000;
     --color-link-hover: #f4f5f1;
     --color-title: #000000;
}
 #fader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 999999;
     pointer-events: none;
     background: white;
     animation-duration: 500ms;
     animation-timing-function: ease-in-out;
}
 @keyframes fade-out {
     from {
         opacity: 1 
    }
     to {
         opacity: 0 
    }
}
 @keyframes fade-in {
     from {
         opacity: 0 
    }
     to {
         opacity: 1 
    }
}
 #fader.fade-out {
     opacity: 0;
     animation-name: fade-out;
}
 #fader.fade-in {
     opacity: 1;
     animation-name: fade-in;
}
 html, body {
     font-family: 'Neue Haas Grotesk Display Pro 55 Roman', sans-serif;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     margin: 0 !important;
     font-weight: normal !important;
     height: calc(var(--vh, 1vh) * 100);
     width: 100vw;
     padding: 0 !important;
     background: var(--color-bg);
     transition: background 0.5s ease;
     overflow: hidden !important;
}
 body {
     margin: 0;
     -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
     -moz-animation: fadein 2s;
    /* Firefox < 16 */
     -ms-animation: fadein 2s;
    /* Internet Explorer */
     -o-animation: fadein 2s;
    /* Opera < 12.1 */
     animation: fadein 2s;
}
 a:focus {
     outline: thin dotted;
}
 a:active, a:hover {
     outline: 0;
}
 html, body {
     height: 100%;
}
 body {
     color: var(--color-text);
     background-color: var(--color-bg);
     transition: background 0.5s ease;
     z-index: 1000;
}
 canvas {
     width: 100% !important;
     height: 100% !important;
     position: absolute;
     top: 0;
     z-index: -1;
}
 a {
     text-decoration: none;
     color: white;
     padding-right: 1rem;
     cursor: pointer;
}
 h1, h2, p {
     font-weight: normal;
     margin:0;
}
 h1{
     font-size: 30px;
}
 p{
     font-size: 16px;
}
 .site__logo {
     width: 90px;
}
 .flex-container {
     display: flex;
     height: 100vh;
}
 .left-container {
     width: 50%;
     padding: 1rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     background:var(--color-bg);
     color: var(--color-text);	 
}
 .right-container {
     width: 50%;
     padding: 1rem;
     display: flex;
     flex-direction: column;
     justify-content: center;
     background:var(--color-bg);
     color: var(--color-text);	 
}
 .right-inner-container {
     display: flex;
     justify-content: space-between;
     align-items: baseline;
}
 .anchored-bottom {
     position: absolute;
     bottom: 1rem;
     width: 50%;
}
 .left-container.hide-content h1, .left-container.hide-content svg {
     opacity: 1;
	 filter: blur(4px);
}
 .left-container.hide-content, .right-container.hide-content {
     background-color: var(--color-link-hover);
}
 .right-container.hide-content h1, .right-container.hide-content p {
     opacity: 1;
	 filter: blur(4px);	 
}
 .left-container h1, .left-container p,  .left-container  {
     opacity: 1;
     transition: all 0.3s;
}
 .right-container h1, .right-container p,  .left-container  {
     opacity: 1;
     transition: all 0.3s;
}

a {
     transition: all 0.3s;
     color: var(--color-text);	 
	
}
a:hover {
	 filter: blur(4px);
	
}
 @media (max-width: 768px) {
     .flex-container {
         flex-direction: column;
         height: 100svh;
         position: relative;
        /* Add this to the flex-container */
    }
     .left-container, .right-container {
         transition: opacity 0.3s;
         height: -webkit-fill-available;
         width: -webkit-fill-available;
         position: absolute;
         top: 0;
         left: 0;
         z-index: 1;
        /* Add this to both containers */
    }
     .right-container {
         background: #000;
         color: white;
         z-index: 0;
        /* Set a lower z-index to hide the right-container initially */
    }
     .hide-content {
         opacity: 0;
    }
     .anchored-bottom {
         width: 70%;
    }
 a {
    color: white !important;
}   
}
