@import "~styles/vars";

html
    -webkit-box-sizing: border-box
    -moz-box-sizing: border-box
    box-sizing: border-box
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

*, *:before, *:after
    -webkit-box-sizing: border-box
    -moz-box-sizing: border-box
    box-sizing: border-box

html, body
    background-color: $background;
    color: $white
    width: 100%
    height: 100%
    min-height: 100%
    margin: 0
    padding: 0
    font-family $text-font

#app
    width: 100%
    height: 100%
    min-height: 100%

h1
    text-align center

#main-loader
    display block
    size 100%
    position fixed
    background-color $primary
    text-align center
    color: $white
    z-index 1001

