// base
@import "./resets.scss";
@import "./shared/resources.scss";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');
@import url('https://use.fontawesome.com/releases/v5.7.2/css/all.css');

// imports
@import "./typography.scss";
@import "./layout.scss";

// general
html {
  height: 100%;
  font-size: 10px;
}

body {
  position: relative;
  height: 100%;
  background: $color-body-bg;
  color: $color-text-dark;
  font-family: $font-family;
  font-size: 1.4rem;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}
