@charset "utf-8";

@font-face {
    font-family: 'Suisse Bold';
    src: url('../fonts/SuisseIntl-Bold.otf'),
    url('../fonts/SuisseIntl-Bold-WebM.woff2') format('woff2'),
    url('../fonts/SuisseIntl-Bold-WebM.woff') format('woff'),
    url('../fonts/SuisseIntl-Bold-WebM.ttf') format('truetype'),
    url('../fonts/SuisseIntl-Bold-WebM.svg') format('svg')
}

/* --- RESET --- */

h1, h2, h3, p, a, li {
    margin: 0;
    font-weight: normal;
    font-size: 11.5px;
    line-height: 1.15; 
}



body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

* {
    box-sizing: border-box;
    color: #fbfbf4;
}


/* --- GENERAL --- */

body {
    margin: 0;
    padding: 0;
    font-family: 'Suisse Bold';
    text-transform: uppercase;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: greyscale;
}

h1 {
    text-align: center;
    font-size: 15.2vw;
    letter-spacing: -0.01em;
    margin-bottom: -0.2em;
    margin-top: calc( 50vh - 10.5vw);
}

h2 {
    text-align: center;
}

h3 {
    text-align: center;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
}




/* --- HEADER --- */

header {
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

header section {
    display: flex;
    justify-content: space-between;
}

#subtitle {
    visibility: hidden;
}


/* INFO */

#info {
    display: none;
    flex-direction: column;
}

/* TEXT */

#text p {
    padding-left: 4vw;
    padding-right: 4vw;
    text-align: center;
    width: 100%;
}

#text div {
    display: flex;
}


/* --- LINKS --- */

#links {
    text-align: center;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    padding: 0;
    margin: 0;
}

#links a:hover {
    color: #f47146;
}

#buylink {
    color: #f47146; 
}

#buylink:hover {
    color: #fbfbf4!important;
}


/* FOOTER */

footer {
    position: fixed;
    bottom: 0;
    display: none;
    flex-direction: column;
    width: 100vw;
}

footer section {
    display: flex;
    justify-content: space-between;
}


/* DYNAMIC MARGIN */

h2 {
    padding-left: 2vw;
    padding-right: 2vw;
}

footer {
    padding-bottom: 2vw;
    padding-left: 2vw;
    padding-right: 2vw;
}


/* GRID */

#cells {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    display: flex;
    flex-flow: wrap;
    cursor: pointer;
}

#cells div {
    width: calc(100vw / 4);
    height: calc(100vh / 3);
}

#background_image {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    background-image: url(../images/img_01.jpg);
    transition-delay: 0.1s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#background_image_mobile {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    transition-delay: 0.1s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#background_color {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    background-color: #1a1a1a;
    cursor: pointer;
}


/* LAYERS */

#cells {
    z-index: 10;
}

header {
    z-index: 7;
}

#background_image,
#background_image_mobile {
    z-index: 5;
}

#info, #text, #links {
    z-index: 3;
}

footer {
    z-index: 2;
}

#background_color {
    z-index: 1;
}

       