/* Minification failed. Returning unminified contents.
(10,28): run-time error CSS1039: Token not allowed after unary operator: '-light-color'
 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    height: 100%;
    background-color: var(--light-color);
    background: linear-gradient(180deg, rgba(57,64,68,1) 0%, rgba(38,44,46,1) 30%, rgba(7,7,7,1) 100%);
}

body {
    font-family: 'Raleway', sans-serif;
    position: relative;
    height: 100%;
}

@media screen and (max-width: 640px) and (orientation: portrait) {
    html, body {
        height: unset;
    }
}

@media screen and (max-width: 768px) and (orientation: portrait) {
    body {
        height: calc(100% - (155px + 70px));
    }
}

/*@media screen and (min-width: 1024px) and (orientation: landscape) {
    body {
        height: calc(100% - 275px);
    }
}*/

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .max-view-height {
        height: calc(100% - 275px);
    }
}

.pattern {
    /*position: fixed;*/
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.axeso5.com/launcherlanding/pattern_hub.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: -40px;
    opacity: 0.06;
    z-index: -1;
    top: 0;
}

@media screen and (max-width: 640px) and (orientation: portrait) {
    .pattern {
        background-size: 400%;
    }
}

.main-container {
    width: 100%;
    height: 100%;
}
