@import 'variables.scss';
@import 'fonts';
@import 'mixins';
@import 'utilities/lint';

@if $env == 'development' {
  @include lint;
}

/* Reset and dependencies*/
@import "~normalize.css";
@import "resets/print";

/* Core CSS*/
@import "resets/reboot";
//@import "../helpers/helpers";

.mainBody {
  min-height: 100vh;
  @include media-breakpoint-up(md) {
    padding-top: 8rem;
  }
  -ms-overflow-x: hidden; //because ie11 always screws things up
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: $brand-primary;
  margin: 0;
}