@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500;700;900&display=swap');


body {
    background-color: #111;
}

h1 {
    margin: 0;
    font-weight: 500;
}

h2 {
    color: #888;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
}


html, body {
    min-height: 100%;
}

body {
    margin: 0;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

#page-wrap {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/*** canvas ***/

#canvas {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    left: 0;
}


#fullwidth-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

#fullwidth-image img, #fullwidth-image canvas {
    display: none;
}

/* handling WebGL context errors */

.no-webgl #fullwidth-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-webgl #fullwidth-image img {
    display: block;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}











@keyframes animationgradienttitle {
    0% {
        background-position: 0 2400px;
    }
    100% {
        background-position: 1600px 0;
    }
}

.c-article {
    margin-top: 20vh;
    text-align: center;
}

.c-article__header {
    position: relative;
}

.c-article__title {
    font-family: 'Poppins', sans-serif;
    font-size: 8em;
    color: #fff;
    background: -webkit-linear-gradient(left, #a00, #afa, #a00);
    background-size: 1600px 200px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-duration: 10s;
    animation-name: animationgradienttitle;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}

@media (max-width: 1340px) {
    .c-article__title {
        font-size: 6em;
    }
}

@media (max-width: 1020px) {
    .c-article {
        margin-top: 30vh;
    }
    .c-article__title {
        font-size: 4em;
    }
}

@media (max-width: 720px) {
    .c-article {
        margin-top: 40vh;
    }
    .c-article__title {
        font-size: 3em;
    }
}

@media (max-width: 500px) {
    .c-article__title {
        font-size: 2em;
    }
}

@media (max-width: 360px) {
    .c-article__title {
        font-size: 1em;
    }
}

/* NAV */

nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 2560px;
    margin-right: auto;
    margin-left: auto;
}
.nav-items-wrapper {
    height: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.nav-button-wrapper {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 32px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
  .nav-button {
    position: relative;
    margin-right: 8px;
    padding: 8px 16px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 100px;
    background-color: rgba(245, 244, 238, .4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
    color: #000;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.nav-button {
    position: relative;
    margin-right: 8px;
    padding: 8px 16px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 100px;
    background-color: rgba(245, 244, 238, .4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    -webkit-transition: background-color .5s;
    transition: background-color .5s;
    color: #000;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.page-padding {
    padding-right: 32px;
    padding-left: 32px;
}


/* MARQUEE */

.marquee {
    height: 40px;
    width: 100%;
    overflow: hidden;
    position: absolute;
    color: #fff;
    bottom: 40px;
}

.marquee div {
    display: block;
    width: 200%;

    position: absolute;
    overflow: hidden;

    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
}

.marquee span {
    float: left;
    width: 50%;
    font-size: 20pt;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

@media (max-width: 1340px) {
    .marquee span {
        font-size: 18pt;
    }
}

@media (max-width: 1020px) {
    .marquee span {
        font-size: 16pt;
    }
    .marquee {
        height: 30px;
    }
}

@media (max-width: 720px) {
    .marquee span {
        font-size: 12pt;
    }
    .marquee {
        height: 24px;
    }
}

@media (max-width: 500px) {
    .marquee span {
        font-size: 10pt;
    }
    .marquee {
        height: 20px;
    }
}

@media (max-width: 360px) {
    .marquee span {
        font-size: 8pt;
    }
}
