/* Reset */
html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'PingFang SC', 'San Francisco', -apple-system, BlinkMacSystemFont, '.SFNSText-Regular', 'Helvetica Neue', Helvetica, sans-serif;
    letter-spacing: 0.4px;
    -webkit-font-smoothing: antialiased;
    color: #24292e;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #833ab4;
    background: -webkit-linear-gradient(to right, #fcb045, #fd1d1d, #833ab4);
    background: linear-gradient(to right, #fcb045, #fd1d1d, #833ab4);
}

a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}

a:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.wrapper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 20px;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    vertical-align: top;
    padding: 0 3rem;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.8);
}

.en .main {
    font-size: 2rem;
}

footer {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
}

footer hr {
    border: 0;
    height: 1px;
    flex: 1;
    margin: 0 100px;
    background: rgba(255, 255, 255, 0.35);
}

footer .active {
    color: rgba(255, 141, 26, 1);
    margin-right: 20px;
}

.navActive {
    border-bottom: 3px solid rgba(255, 141, 26, 1);;
    height: 38px;
    color: rgba(255, 141, 26, 1);
    width: 65px;
    margin: 0 auto;
    text-align: center;
}

.contact {
    display: flex;
    justify-content: end;
}

.contact a {
    align-items: center;
    font-size: 16px;
}

.contact a span {
    margin-right: 10px;
}

.contact a .leftIcon {
    margin-right: 2rem;
}

.show {
    display: block;
}

.hide {
    display: none;
}


.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav .closeBtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Larger than tablet */
@media (min-width: 0px) {
    .navWrapper {
        display: none;
    }

    .desktopInline {
        display: none;
    }

    .mobileInline {
        display: flex;
        justify-content: right;
    }

    footer {
        font-size: 12px;
        padding: 0 1.5rem;
    }

    footer hr {
        margin: 0 !important;
    }

    footer a {
        display: block;
    }

    .logo img {
        width: 147px;
        height: 56px;
    }

    header {
        height: 3.5rem;
        padding: 0 1.5rem;
        margin-top: 8px;
    }

    .main {
        font-size: 2.5rem;
        white-space: pre;
    }

    .en .main {
        font-size: 1.25rem;
        letter-spacing: 6px;
    }
}

/* Larger than desktop */
@media (min-width: 1000px) {
    .navWrapper {
        display: block;
    }

    .desktopInline {
        display: flex;
        justify-content: space-between;
    }

    .mobileInline {
        display: none;
    }

    footer {
        padding: 0 3rem;
        font-size: 16px;
    }

    footer hr {
        margin: 0 100px !important;
    }

    footer a {
        display: inline;
    }

    .logo img {
        width: 264px;
        height: 100px;
    }

    header {
        height: 6.25rem;
        padding: 0 3.75rem;
        margin-top: 0;
    }

    header>div {
        width: 33.333%;
    }

    .main {
        font-size: 3.5rem;
    }

    .en .main {
        font-size: 2rem;
    }
}
