@font-face {
    font-family: 'nunito';
    src: url(356cf14003d102b3.ttf);
}


body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000000;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.webgl {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    outline: none;
    background-color: #000000;
    cursor: move;
    /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.webgl:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 30%);
    pointer-events: none;
}

.chrome {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.navigation {
    display: block;
    left: 50%;
    pointer-events: all;
}

.button {
    position: absolute;
    display: inline-block;
    left: 50%;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    display: none;
}

.circle {
    stroke: #222222;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    fill: rgba(0, 0, 0, 0.5);
    transition: all .5s;
}

.arrow {
    fill: #adadad;
    transition: all .2s;
}

.button:hover .circle {
    stroke: #555555;
    stroke-dashoffset: 0;
}

.button:hover .arrow {
    fill: #e2e2e2;
    transform: scale(1.3) translate(-5px, -5px);
}

.button.previous {
    transform: translate(-105%, 0px);
}

.button.next {
    transform: translate(5%, 0px);
}

.loader {
    position: absolute;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
    text-indent: 2px;
    text-transform: uppercase;
    left: 50%;
    top: 50%;
    width: 200px;
    text-align: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/*# sourceMappingURL=main.css.map*/