<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* css properties preflixed 'n' are temporary */

:root {
    --background-color:#000; /* #000 */
    --video-matt:#000;
    --transparent-white: rgba(255,255,255,0.5);
    --highlight-color: #ff3300;

    --header-height: 50px;

}

* {
    
    box-sizing: border-box;

}

html {
    font-family: sans-serif;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    position: relative;
    top:0px;
    left:0px;
    width: 100%;

    color: white;

    overflow-x: hidden;
    overflow-y: scroll;

    background: var(--background-color);
    transition: background 2s;

    font-family: "Helvetica Neue", Helvetica, sans-serif;

    font-size: 0;
    line-height: 0;

    margin: 0px;

    
}


/* div {
    outline: 1px solid red;
} */


/* 



large blocks



*/

.full-height-block {
    height: 100vh;
    overflow: hidden;
}

.full-width-block {
    width: 100%;
}

.extendable-height-block {
    height: auto;
}

.third-height-block {
    height: 33.333vh;
    overflow: hidden;
}

.quarter-height-block {
    height: 24vh;
    overflow: hidden;
}

.vertical-aligned-container {
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: row;
}

/* 



core elements


*/

.header-container {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: var(--header-height);

    background-color: rgba(0,0,0,0.3);
    
    border-bottom: 1px solid var(--transparent-white);
    z-index: 100;

    user-select: none;
}

.header-logo-container {
    width: 200px;
    height: var(--header-height);

    padding: 0 32px;
    display: flex;
    align-items: center;
    
    border-right: 1px solid var(--transparent-white);
}

.header-links-container&gt;div {
    height: var(--header-height);
    border-left: 1px solid var(--transparent-white);
    display: inline-block;
    vertical-align: top;
}

.header-logo {
    height:auto;
    width:188px;
}

.manifold-collectible-container {
    margin-top: 36px;
    margin-bottom: -96px;
}

.header-links-container {
    position: absolute;
    top:0;
    right:0;
    width: 100%;
    height: 100%;

    text-align: right;
}

/*  */

#background-interactive {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: black;
    opacity: 0;
}

/*  */

.vimeo-container {
    position: relative;
    width: 100%;
    height: 56vw;
    max-height: 95vh;
    
}
/* 
.vimeo-container.playing {
    
} */

.vimeo-container&gt;.player {
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    
}
/* 
.vimeo-container.playing&gt;.player {

} */

.vimeo-container&gt;.overlay {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    
    background-color: rgba(255,255,255,0.5);
    opacity: 1;

    pointer-events: none;
    touch-action: none;

    user-select: none;
}

.vimeo-container&gt;.overlay&gt;svg {
    width: 64px;
    height:auto;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    fill: #00ddff;
    mix-blend-mode: difference;
    cursor: pointer;
}

.vimeo-container:hover&gt;.overlay&gt;svg {
    transform: translate(-50%,-50%) scale(3,3);
}

.vimeo-container.playing&gt;.overlay {
    opacity: 0;
}

.vimeo-title {
    position: absolute;
    top:5%;
    left:0;
    width: 100%;

    color: #00ddff;
    mix-blend-mode: difference;

    padding: 0 32px;
}

.vimeo-description {
    position: absolute;
    bottom:10%;
    left:0;
    width: 100%;

    color: #00ddff;
    mix-blend-mode: difference;

    padding: 0 32px;
}

/*  */

/*

.nft-gallery-container {
    position: relative;
    width: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;

    user-select: none;
}

.nft-gallery {
    width: 100%;
    height: 35vw;

    transform-style: preserve-3d;   
}

.nft-card {
    position: absolute;
    top:50%;
    left:50%;

    width: 60vw;
    height: 60vw;

    transform-origin: center center;
    transform-style: preserve-3d;
}

.nft-card-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;

    transform: rotateY(180deg);     
    backface-visibility: hidden;
    
    background-color: #ffffff;
}

.nft-card-inner&gt;img {
    width: 100%;
    height: 100%;
}

*/


.nft-gallery-container {
    position: relative;
    top:0;
    left:0;
    width: 100%;
    height: 40vh;
    
    user-select: none;
    
    display: inline-block;
}

.nft-gallery {
    width: 100%;
    height: 100%;

    position: relative;
    top:50%;
    left:50%;

    min-width: 100vh;
    
    transform: translate(-50%,-50%);

    perspective: 50vw;
    transform-style: preserve-3d;
    transform-origin: center center;

    display: inline-block;
    overflow: hidden;

}

.nft-card {
    position: absolute;
    top:50%;
    left:50%;

    width: 30vw;
    height: 30vw;

    max-width: 400px;
    max-height: 400px;
    
    overflow: hidden;

    backface-visibility: hidden;

    transform-origin: center center;
    transform-style: preserve-3d;
}

.nft-card&gt;canvas {
    width: 100%;
    height: 100%;
}
    

@media only screen and (max-width: 600px) {

  .nft-gallery {

    perspective: 40vh;

  }
    
  .nft-card {

    width: 30vh;
    height: 30vh;

  }
  
}

/*  */

.footer {
    position: absolute;

    width: 100%;
    display: block;

    color: white;
    background-color: black;
    
    border-top: 1px solid var(--transparent-white);
}

.footer-column-container {
    padding-top: 8px;
    padding-bottom: 32px;

    user-select: none;
}

.footer-column {
    display: inline-block;
    width: 33.33%;
    vertical-align: top;
    padding: 0px 16px;
    font-size: 12px;
    line-height: 1em;
    letter-spacing: 0.1em;
    text-align: left;
}

.footer-folding-column {
    display: inline-block;
    width: 66.66%;
}

.footer-folding-column&gt;.footer-column {
    display: inline-block;
    width: 50%;
}

.footer-column&gt;ul {
    list-style-type: none;
    margin: 0;
    padding: 0;   
}

.footer-column&gt;ul&gt;li {
    padding: 8px 0;
}

/* 



misc bits &amp; bobs



*/

.section-container {
    position: relative;
    top:0px;
    left:0px;
    width: 100%;
}

.responsive-column-container {
    width: 100%;

    display: block;

    margin: 0 auto;
    max-width: 1000px;

    padding: 0 16px;
}

.company-logo-container {
    width: 25%;
    height: 20vh;

    display:inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    user-select: none;
}

.scroll-snap-start {
    scroll-snap-align: start;
}

.scroll-snap-end {
    scroll-snap-align: end;
}

.not-in-use {
    display: none !important;
}

/*




links 




*/

a.header-icon-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background-color: transparent;
    color: white;
    fill: white;

    transition: all 1s ease-out;
}

a:hover.header-icon-link, a:active.header-icon-link,a.header-icon-link.selected, a:hover.header-icon-link.selected, a:active.header-icon-link.selected {
    background-color: white;
    color: black;
    fill:black;
}

#m-connection {
    display: flex !important;
    width: 100% !important;
}

.m-buy {
    display: flex !important;
    justify-content: center;
}

.m-buy-button, .m-connect button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px !important;
    letter-spacing: 0.3em;

    text-decoration: none;

    transition: all 1s ease-out;

    background: linear-gradient(270deg, rgba(238, 255, 160,1), rgba(238, 255, 160,1), rgba(238, 255, 160,1), rgba(238, 255, 160,1)) !important;
    background-position: 1% 50%;
    background-size: 300% 300%;

    color: black !important;
    fill: black;

    padding: 0 18px !important;
    border-radius: 0 !important;
    border: 0 !important;
}

.m-connection-wallet-options button:not(:first-child) {
    outline: 1px solid black !important;
}

.m-connection-wallet {
    display: none !important;
}

div.m-connected-container&gt;button&gt;* {
    font-size: 14px !important;
}

.m-buy-button {
    width: 300px;
    height: 50px;
    font-weight: 500;
    text-transform: uppercase;
}

a.header-mint-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    letter-spacing: 0.3em;

    text-decoration: none;

    transition: all 1s ease-out;

    background: linear-gradient(270deg, rgba(238, 255, 160,1), rgba(238, 255, 160,1), rgba(238, 255, 160,1), rgba(238, 255, 160,1));
    background-position: 1% 50%;
    background-size: 300% 300%;

    color: black;
    fill: black;
}

a:hover.header-mint-link, a:active.header-mint-link,a.header-mint-link.selected, a:hover.header-mint-link.selected, a:active.header-mint-link.selected {

    color: white;
    
    background: linear-gradient(270deg, rgba(223,190,106,0.8), rgba(146,111,52,0.8), rgba(34,34,34,0), rgba(34,34,34,0));
    background-position: 1% 50%;
    background-size: 300% 300%;

    background-position: 99% 50%;

    fill: white;

}

.m-connect button:hover, .m-connect button:active {
    background: linear-gradient(270deg, rgba(223,190,106,0.8), rgba(146,111,52,0.8), rgba(34,34,34,0), rgba(34,34,34,0)) !important;
    background-position: 1% 50%;
    background-size: 300% 300%;

    background-position: 99% 50%;

    color: white !important;
    fill: white;

    border: 1px solid var(--transparent-white) !important;
    outline: 0 !important;
}

.m-buy-button:hover, .m-buy-button:active {
    background: linear-gradient(270deg, rgba(223,190,106,0.8), rgba(146,111,52,0.8), rgba(34,34,34,0.8), rgba(34,34,34,0.8)) !important;
    background-position: 1% 50%;
    background-size: 300% 300%;

    background-position: 99% 50%;

    color: white !important;
    fill: white;
    border: 1px solid var(--transparent-white) !important;
}

div.m-connected-container&gt;div&gt;button:hover, div.m-connected-container&gt;div&gt;button:active {
    border: 1px solid var(--transparent-white) !important;
    outline: 0 !important;
}

.m-countdown {
    background: rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    justify-content: center !important;
    padding: 0 !important;
    width: 300px;
    max-width: 300px;
    margin: auto;
    border-left: 1px solid var(--transparent-white) !important;
    border-right: 1px solid var(--transparent-white) !important;
    border-bottom: 1px solid var(--transparent-white) !important;
}

.m-countdown-title {
    padding: 8px;
    width: auto !important;
    align-self: center;
    margin-right: -10px;
}

.m-countdown-clock {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-width: none !important;
    width: auto !important;
    padding: 0 8px;
}

.m-countdown&gt;*, .m-countdown-clock&gt;div&gt;p {
    font-family: "Helvetica Neue", Helvetica, sans-serif !important;
    text-align: center !important;
}

.m-countdown-clock&gt;div&gt;p:last-child {
    margin-top: 12px !important;
    margin-bottom: 0px !important;
}

.m-countdown-clock&gt;div&gt;p:first-child {
    margin-top: 4px !important;
}

.m-countdown-clock&gt;div {
    margin-left: 10px;
}

.m-inventory {
    width: 300px;
    max-width: 300px;
    margin: auto;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column-reverse;
    background: rgba(0, 0, 0, 0.3) !important;
    border-left: 1px solid var(--transparent-white) !important;
    border-right: 1px solid var(--transparent-white) !important;
    border-bottom: 1px solid var(--transparent-white) !important;
    grid-gap: 0 !important;
}

.m-inventory-meter {
    height: 4px;
    background: black !important;
}

.m-inventory-meter&gt;div {
    background: white !important;
}

.m-inventory-info {
    text-align: center;
    font-size: 14px;
    display: flex !important;
    border: 1px 1px 0 0 solid var(--transparent-white) !important;
    align-content: center;
}

.m-inventory-info&gt;span {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 8px auto;
    font-weight: 600;
}

.m-collectible-inner {
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
}

.m-confirmation {
    background: white;
    width: 80% !important;
    height: fit-content !important;
    max-width: 750px;
    margin: auto;
    margin-top: 64px;
    padding: 42px 48px;
    overflow: scroll;
    max-height: 90vh;
}

.m-collectible-close-button {
    font-size: 48px;
    font-weight: 300;
    background: none;
    border: none;
    position: absolute;
    top: 0;
    right: 16px;
    color: white;
}

.m-confirmation-form {
    display: block !important;
}

.m-confirmation-form::before {
    content: "Mint ikon-1 NFTs";
    display: inline-flex;
    width: 100%;
    font-size: 36px;
    font-weight: 500;
    color: black;
    padding-bottom: 24px;
    border-bottom: 1px solid black;
}

.m-confirmation-form&gt;button {
    color: black !important;
    font-size: 18px !important;
    padding: 12px 0 !important;
    width: 48% !important;
    border: none !important;
    border-radius: 8px !important;
    background: linear-gradient(270deg, rgba(238, 255, 160,1), rgba(238, 255, 160,1), rgba(238, 255, 160,1), rgba(238, 255, 160,1)) !important;
    
    box-shadow: none;
    margin-top: 24px !important;
    transition: all 1s ease-out !important;
}

.m-confirmation-form&gt;button:hover, .m-confirmation-form&gt;button:active {
    background: linear-gradient(270deg, rgba(223,190,106,0.8), rgba(146,111,52,0.8), rgba(34,34,34,0.8), rgba(34,34,34,0.8)) !important;
    background-position: 1% 50%;
    background-size: 300% 300%;

    background-position: 99% 50%;

    color: white !important;
    fill: white;
}

.m-confirmation-form&gt;button:disabled, .m-confirmation-form&gt;button.disabled {
    opacity: 1 !important;
    pointer-events: none;
    color: rgb(147, 147, 147) !important;
    background: linear-gradient(270deg, rgba(216, 216, 216, 1), rgba(216, 216, 216, 1), rgba(216, 216, 216, 1), rgba(216, 216, 216, 1)) !important;
}

.m-purchase-amount {
    display: flex;
    flex-direction: row-reverse;
    color: black;
    margin-bottom: 42px !important;
}

.m-purchase-amount&gt;span {
    display: none !important;
}

.m-purchase-amount&gt;label {
    display: inline-flex !important;
    justify-content: center;
    align-items: flex-start;
    font-size: 18px !important;
    padding-left: 18px;
    margin: 0 !important;
    flex-direction: column;
    text-align: left !important;
}

.m-purchase-amount&gt;label:after {
    content: attr(price);
    position: absolute;
    bottom: 0;
    font-weight: 600;
    width: 100%;
}

.m-purchase-amount-form-input {
    width: 162px !important;
}

.m-purchase-amount-form-input&gt;input {
    border: 1px solid black !important;
    width: 80px;
    font-size: 18px !important;
    height: auto !important;
    text-align: right !important;
    padding: 4px;
    border-radius: 4px;
}

.m-purchase-amount-form-input&gt;button {
    background: rgb(221, 221, 221) !important;
    color: rgb(115, 115, 115);
    height: 32px !important;
    width: 32px !important;
    font-size: 28px;
    padding-bottom: 3px;
    border-radius: 16px;
}

.m-purchase-amount-form-input&gt;button:hover, .m-purchase-amount-form-input&gt;button:active {
    background: rgb(175, 175, 175) !important;
    color:black
}

.m-purchase-amount-form-input&gt;button&gt;svg {
    display: none;
}

.m-purchase-amount-form-input&gt;button:last-child::before {
    content: '+';
    margin-bottom: 5px;
    display: inline-flex;
}

.m-purchase-amount-form-input&gt;button:nth-child(2):before {
    content: '-';
    margin-bottom: 3px;
    display: inline-flex;
}

.m-checkbox {
    display: flex;
    font-size: 14px;
    color: black;
    margin-bottom: 6px;
}

.m-checkbox&gt;span&gt;a {
    color: black;
    text-decoration-style: dotted;
}

.m-checkbox&gt;input {
    margin-right: 4px;
    accent-color: black;
    cursor: pointer;
}

.m-confirmation-form&gt;.m-checkbox:nth-child(3) {
    padding-bottom: 24px;
    border-bottom: 1px solid black;
}

.m-purchase-amount-form-info, .m-tx-fee {
    margin-top: 18px;
    text-align: right;
    color: black;
    font-size: 18px;
    font-weight: 600;
    display: flex !important;
    justify-content: end;
    width: 100%;
}

.m-tx-fee {
    margin-top: 2px;
    margin-bottom: 12px;
}

.m-purchase-amount-form-info::before {
    content: 'Subtotal: ';
    font-weight: 400;
    margin-right: 6px;
}

.m-purchase-amount-form-info::after {
    content: attr(price);
    text-align: right;
    margin-left: 6px;
}

.m-crossmint-button {
    margin-left: 4%;
}

.m-confirmation-dialog {
    height: 100vh !important;
    color: white !important;
    padding: 32px;
}

.m-confirmation-dialog&gt;div {
    color: white !important;
    transition: all 0.5s !important;
    width: 90%;
}

.m-confirmation-dialog&gt;div&gt;button {
    pointer-events: all;
}

.m-confirmation-dialog&gt;div&gt;button:hover {
    color: black !important;
}

.m-confirmation-dialog&gt;div&gt;* {
    max-width: 100%;
    color: white !important;
}

.m-confirmation-dialog&gt;div&gt;*&gt;p {
    color: white !important;
}

.m-minted {
    display: flex;
}

.m-minted-grid {
    padding: 32px;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center;
    align-items: center;
    overflow: scroll;
    height: 100vh !important;
}

.m-minted-token {
    max-width: 400px;
}

.m-minted-token-inner {
    padding: 32px;
}

.m-minted-token-info {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    padding: 8px !important;
}

.m-minted-token-info&gt;a {
    color: white;
    opacity: 0.5;
    text-decoration: none;
}

.m-minted-token-info&gt;a::before {
    display: inline-block;
    content: '';
    width: 15px;
    height: 15px;
    transform: translateY(1px);
    margin-right: 10px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;utf8,&lt;svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"&gt;&lt;path fill-rule="evenodd" clip-rule="evenodd" d="M5 1H2C1.44772 1 1 1.44772 1 2V9C1 9.55228 1.44772 10 2 10H9C9.55228 10 10 9.55228 10 9V6H11V9C11 10.1046 10.1046 11 9 11H2C0.895432 11 0 10.1046 0 9V2C0 0.895416 0.895432 0 2 0H5V1Z" fill="white" /&gt;&lt;path d="M9.15352 1.02758C9.09893 1.01835 9.04284 1.01355 8.98563 1.01355L6.98618 1.01355V0.0138245L8.98563 0.0138245C10.0899 0.0138246 10.9851 0.909007 10.9851 2.01327V4.01271H9.98535V2.01327C9.98535 1.89269 9.964 1.77709 9.92488 1.67005L6.15908 5.43585L5.45217 4.72894L9.15352 1.02758Z" fill="white" /&gt;&lt;/svg&gt;');
}

.m-minted-token-info&gt;a:hover {
    opacity: 1;
}

.body-block-link {
    border: 1px solid white;
    background-color: transparent;
    font-size: 16px;
    color: white;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    transition: all 1s ease-out;
    width: 200px;
    padding: 1em;
    display: inline-block;
    margin: 8px;

    text-decoration: none;
    user-select: none;
}

a:hover.body-block-link, a:active.body-block-link,a.body-block-link.selected, a:hover.body-block-link.selected, a:active.body-block-link.selected {
    text-decoration: none;
    background-color: white;
    color: black;
}

a.gold-block-link {
    border: 1px solid white;

    background: linear-gradient(270deg, rgba(238, 255, 160,1), rgba(238, 255, 160,1), rgba(238, 255, 160,1), rgba(238, 255, 160,1));
    background-position: 1% 50%;
    background-size: 300% 300%;

    font-size: 16px;
    color: black;
    letter-spacing: 0.3em;
    text-align: center;
    text-transform: uppercase;
    transition: all 1s ease-out;
    width: 200px;
    padding: 1em;
    display: inline-block;
    margin: 8px;

    text-decoration: none;
    user-select: none;
}

a:hover.gold-block-link, a:active.gold-block-link,a.gold-block-link.selected, a:hover.gold-block-link.selected, a:active.gold-block-link.selected {
    background: linear-gradient(270deg, rgba(223,190,106,0.8), rgba(146,111,52,0.8), rgba(34,34,34,0), rgba(34,34,34,0));
    background-position: 1% 50%;
    background-size: 300% 300%;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(223,190,106,0);
    background-position: 99% 50%;
}

.footer-block-link {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

a.footer-block-link,a:hover.footer-block-link, a:active.footer-block-link,a.footer-block-link.selected, a:hover.footer-block-link.selected, a:active.footer-block-link.selected {
    text-decoration: none;
    color: white;
}

.footer-inline-icon-link {
    display: inline-block;
    margin-right: 20px;
    color: white;
    text-decoration: none;
}

a.footer-inline-icon-link,a:hover.footer-inline-icon-link, a:active.footer-inline-icon-link,a.footer-inline-icon-link.selected, a:hover.footer-inline-icon-link.selected, a:active.footer-inline-icon-link.selected {
    text-decoration: none;
    color: white;
}

/*  



typography &amp; big text



*/

div.h-logo {
    width: 100%;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2em !important;

    user-select: none;
}

div.h-contributor-name{
    width: 100%;
    font-size: 64px;
    font-weight: 100;
    text-transform: uppercase;

    padding: 0 16px;

    user-select: none;
}

div.h-section-title{
    width: 100%;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 2em !important;
}

div.h-section-description {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.07em;
    line-height: 1.5em !important;
}

div.h-credits {
    width: 100%;
    letter-spacing: 0.1em;
    line-height: 2em !important;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;

    padding: 0 16px;

    user-select: none;
    min-height: 36px;

    margin-bottom: 24px;
}

div.h-big-number-container {
    width: 80%;
}

div.h-big-headline {
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.1em;
    text-shadow: 0px 0px 3px white;
}

div.h-big-number {
    font-size: 42px;
    line-height: 1em;
    color: var(--highlight-color);
    text-shadow: 0px 0px 3px white;
}

div.h-big-number-detail {
    font-size: 18px;
    font-weight: 200;
    line-height: 1.2em;

    padding-left: 32px;
    position: relative;
}

div.h-email-addresses {
    font-size: 18px;
    font-weight: 200;
    line-height: 1em;

    position: relative;
    width: 100%;
    text-align: center;
    color: white;
}

div.h-about {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5em;

    color: black;
}

div.p-about {
    font-size: 18px;
    font-weight: regular;
    line-height: 1.5em;

    margin-top: 1em;
    margin-bottom: 2em;

    color: black;
}

/* 



basic text



*/

.text-light {
    color: white;
}

.text-dark {
    color: black;
}

.text-normal-height {
    line-height: normal;
}

.text-always-center-align {
    text-align: center;
}

.text-always-left-align {
    text-align: left;
}

.text-flip-align {
    text-align: left;
}

/* 


non-core stuff at bottom



*/

.information-screen {
    position: fixed;
    top:0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;

    padding: 32px;

    background-color: rgba(0,0,0,0.7);

    display: none;
}

.information-container-outer {
    width: 100%;
    max-width: 1024px;
    height: 100%;

    padding: 8px 16px 8px 16px;
    margin: 0 auto;

    overflow-y: scroll;
    background-color: white;
}

.information-iframe-container-outer {
    width: 100%;
    max-width: 1024px;
    height: 100%;

    padding: 8px 8px 8px 8px;
    margin: 0 auto;

    background-color: white;
}

.information-container-inner {
    width: 100%;

    padding: 2em 0 5em 0;

    color: black;
    font-size: 14px;
    line-height: normal;
}

.information-close-button-container {
    position: absolute;
    top:8px;
    right: 8px;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    cursor: pointer;
}

.information-close-button-h {
    position: absolute;
    top:0;
    left:7px;
    width: 2px;
    height: 16px;
    background-color: white;
}

.information-close-button-v {
    position: absolute;
    top:6px;
    left:0px;
    width: 16px;
    height: 2px;
    background-color: white;
}

.information-logo-container {
    width: 25%;
    display: inline-block;
    text-align: center;
    padding: 0 20px;
}

/* faq */

.faq-question {
    padding: 1em 0;
}

.faq-question:focus {
    border: 1px dotted black;
    padding: 1em;
}

.faq-question&gt;div {
    font-weight: bold;
    cursor:pointer;
}

.faq-question&gt;div::before {
    content: "&gt;";
}

.faq-question&gt;p {
    display: none;
}

.faq-question:focus&gt;p {
    display: block;
    border-top: 2px solid black;
    padding: 1em 0;
}

/* 



transitions &amp; animations




*/

.transition-panel-fade-in{
    opacity: 0;
    transform-origin: center;
    transform: scale(1.2,1.2);

    transition: opacity 1.5s ease, transform 1.5s ease;
    transition-delay: 0.2s;
}

.transition-panel-fade-in.go{
    opacity: 1;
    transform: none;
}

.transition-panel-fade-in-delayed{
    opacity: 0;
    transform-origin: center;
    transform: translate(0,-20px);

    transition: opacity 1s ease, transform 1s ease;
    transition-delay: calc(calc(var(--transition-index) - 0.5) * 0.8s);
}

.transition-panel-fade-in-delayed.go-once{
    opacity: 1;
    transform: none;
}

.transition-panel-fade-in-delayed-left{
    opacity: 0;
    transform-origin: center;
    transform: translate(-20px,-20px);

    transition: opacity 1s ease, transform 1s ease;
    transition-delay: calc(calc(var(--transition-index) - 0.5) * 0.8s);
}

.transition-panel-fade-in-delayed-left.go-once{
    opacity: 1;
    transform: none;
}

.transition-panel-fade-in-delayed-right{
    opacity: 0;
    transform-origin: center;
    transform: translate(20px,-20px);

    transition: opacity 1s ease, transform 1s ease;
    transition-delay: calc(calc(var(--transition-index) - 0.5) * 0.8s);
}

.transition-panel-fade-in-delayed-right.go-once{
    opacity: 1;
    transform: none;
}

.scroll-animation {
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-name: scroll-keyframes;
}

@keyframes scroll-keyframes {
    0%   { opacity: 0; }
    30%  { opacity: 1; }
    70%  { opacity: 1; }
    100% { opacity: 0;}
}

/*




Media queries




*/
        
@media only screen and (max-width: 1000px) {
    
    .responsive-column-container {
        padding: 0 16px;
    }
/* 
    .nft-gallery {
        height: 45vw;
    }
 */
}

@media only screen and (max-width: 800px) {

    /* Style adjustments for viewports that meet the condition */

    * {
        user-select: none;
    }

    .header-logo {
        height: auto;
        width: 100px;
    }

    .header-logo-container {
        border-right: none;
    }

    .company-logo-container {
        display:inline-flex;
        width: 100%;
    }

    /* .nft-gallery {
        height: 70vw;
    }

    .nft-card {
        width: 40vw;
        height: 40vw;
    } */
    
    /*  */

    div.h-section-title{
        font-size: 24px;
    }

    div.h-section-description {
        font-size: 16px;
    }

    div.h-contributor-name{
        font-size: 32px;
        font-weight: 100;
        text-transform: uppercase;
    }

    div.h-big-number-container {
        width: 100%;
    }

    div.h-big-headline {
        font-size: 18px;
        line-height: 1.3em;
    }

    div.h-big-number {
        font-size: 24px;
    }

    div.h-big-number-detail {
        font-weight: 200;
        font-size: 16px;
        padding-left: 0px;
        position: relative;
    }

    div.h-about {
        font-size: 14px;
        font-weight: bold;
        line-height: 1.5em;
    
        color: black;
    }
    
    div.p-about {
        font-size: 14px;
        font-weight: regular;
        line-height: 1.5em;
    
        margin-top: 0;
        margin-bottom: 1em;
    
        color: black;
    }

    /*  */

    .information-logo-container {
        padding: 0 10px;
    }

    /*  */
    
    .text-flip-align {
        text-align: center;
    }

    /*  */

    .footer {
        position: relative;
        bottom: auto;
    }

    .footer-column {
        display: inline-block;
        width: 100%;
        padding: 8px 32px;
        text-align: left;
        font-size: 14px;
    }

    .footer-folding-column {
        display: inline-block;
        width: 50%;
    }

    .footer-folding-column&gt;.footer-column {
        display: inline-block;
        width: 100%;
    }

    .footer-icon {
        width: 32px;
        height: 32px;
    }

    /*  */

    .vimeo-title {
        bottom: calc( 100% + 24px );
        top:unset;
        color: white;
        mix-blend-mode: normal;
    }

    .vimeo-description {
        top: calc( 100% + 32px );
        bottom: unset;
        color: white;
        mix-blend-mode: normal;
    }

        
    .vimeo-container&gt;.overlay {
        background-color: transparent;
    }

    .vimeo-container&gt;.overlay&gt;svg {
        visibility: hidden;
    }


    /*  */

    .body-block-link {
        width: 150px;
        font-size: 12px;
        padding: 0.5em;
        margin: 2px 2px;
    }

    .gold-block-link {
        width: 150px;
        font-size: 12px;
        color: white;
        letter-spacing: 0.3em;
        text-align: center;
        text-transform: uppercase;
        transition: all 1s ease-out;
        padding: 0.5em;
        margin: 2px 2px;
    }

    /*  */

    .responsive-column-container {
        padding: 0 16px;
    }

    /*  */

    .transition-panel-fade-in-delayed-left{
        transform: translate(0px,-20px);
    }

    .transition-panel-fade-in-delayed-right{
        transform: translate(0px,-20px);
    }

    /*  */
    
    .mobile-hidden {
        display: none !important;
    }

    .mobile-height-auto {
        height: auto !important;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .m-purchase-amount {
        flex-direction: column;
    }

    .m-purchase-amount&gt;label {
        padding-left: 0;
        margin-top: 16px !important;
        text-align: center !important;
    }

    .m-purchase-amount-form-input {
        margin: 20px 0 60px 0 !important;
    }

    .m-checkbox&gt;input {
        margin-right: 8px;
        transform: scale(1.5)
    }

    .m-confirmation-form&gt;.m-checkbox:nth-child(3) {
        padding-bottom: 0;
        border-bottom: none;
    }

    .m-purchase-amount-form-info {
        margin-top: 18px;
        flex-wrap: wrap;
    }

    .m-purchase-amount-form-info::before {
        width: 100%;
        padding-bottom: 18px;
        border-bottom: 1px solid black;
        text-align: left;
    }

    .m-purchase-amount-form-info&gt;span {
        margin-top: 12px;
        width: max-content;
    }

    .m-purchase-amount-form-info::after {
        margin-top: 12px;
    }

    .m-confirmation-form&gt;button {
        width: 100% !important;
    }
    
    .m-crossmint-button {
        margin-top: 8px !important;
        margin-left: 0px;
    }

    .m-tx-fee {
        margin-bottom: 18px;
    }

    .m-confirmation {
        padding: 32px;
    }

    .m-confirmation-form::before {
        width: 100%;
        display: inline-flex;
        justify-content: center;
        text-align: center;
    }

    .m-collectible-close-button {
        font-size: 32px;
        top: 0;
        right: 8px;
    }

    .m-confirmation {
        width: 90%;
        margin-top: 42px;
    }
}</pre></body></html>