@font-face {
    font-family: "Teko";
    font-weight: 400;
    font-style: normal;
    src: url("../font/Teko-Regular.woff") format("woff");
}

@font-face {
    font-family: "Teko";
    font-weight: 700;
    font-style: normal;
    src: url("../font/Teko-Bold.woff") format("woff");
}

:root {
    --background-color: #100f21;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Teko", sans-serif;

    background-color: var(--background-color);
}

.main {
    z-index: -1;
    opacity: 0;

    background: no-repeat center url("../img/louis-background-grain.png") #000;
    background-size: cover;
    -webkit-animation: 1s backgroundFadeIn .5s forwards;
    animation: 1s backgroundFadeIn .5s forwards;
}

.unselectable {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

@-webkit-keyframes backgroundFadeIn {
    from {
        bottom: -5%;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 100;
    }
}

@keyframes backgroundFadeIn {
    from {
        bottom: -5%;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 100;
    }
}

.stripes {
    position: absolute;
    top: 0;
    right: 0;

    z-index: 0;

    height: 30vw;
    width: 30vw;
}

.stripes polygon {
    fill: #e58512;
}

.stripe {
    display: block;

    height: calc(100% / 3);
}

.stripe.red {
    fill: #e91d44;
}

.stripe.orange {
    fill: #e58512;
}

.stripe.blue {
    fill: #417dc6;
}

.title {
    position: relative;

    z-index: 20;

    text-shadow: 0 0 .5em rgba(0, 0, 0, 0.5);

    -webkit-animation: 1s backgroundFadeIn 0s forwards;

    animation: 1s backgroundFadeIn 0s forwards;
}

.title.red {
    font-size: 20vh;
    line-height: 15vh;
}

.title.orange {
    font-size: 30vh;
    line-height: 25vh;
}

.title.blue {
    font-size: 20vh;
    line-height: 15vh;
}

.b-0 {
    position: absolute;

    bottom: 0;
}

.splash-image-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;

    z-index: 10;
}

.splash-image {
    position: absolute;

    right: 10%;
    bottom: 5%;
    height: 90%;
}

@media only screen and (orientation: portrait) {
    .stripes {
        height: 30vh;
        width: 30vh;
    }

    .title.red {
        /*color: #e91d44;*/
        font-size: 20vw;
        line-height: 20vw;
    }

    .title.orange {
        /*color: #e58512;*/
        font-size: 30vw;
        line-height: 30vw;
    }

    .title.blue {
        /*color: #417dc6;*/
        font-size: 20vw;
        line-height: 20vw;
    }

    .splash-image-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .splash-image {
        position: relative;
    }
}

#scroll-down-button {
    z-index: 1;

    box-shadow: rgba(0, 0, 0, 0.3) 0 0 .5rem;
}

#scroll-down-button img {
    width: auto;
    height: 20pt;
}

#scroll-progress-bar {
    height: 3rem;
    position: relative;

    z-index: 120;
}

#content-wrapper {
    font-family: "Montserrat", serif;

    z-index: 100;

    background-color: var(--background-color);
}
