*,
*:after,
*:before {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: scroll;
  min-width: 300px;
  height: 100%;
  color: $text-color;
  font-size: $font-size-base;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
html {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  background: #ece9e6;
  background: -webkit-linear-gradient(to right, #f0f3f6, #ece9e6);
  background: linear-gradient(to right, #f0f3f6, #ece9e6);
  font-weight: $font-weight-base;
  font-size: $font-size-base;
  font-family: $font-family-base;
  line-height: $line-height-base;
  height: 100%;
  min-height: 100%;
}

#app {
  min-height: 100%;
}

a {
  color: $link-color;
  text-decoration: none;
  transition: none $speed $easing;
  cursor: pointer;

  &:active,
  &:focus,
  &:hover {
    color: $link-hover-color;
  }
}

hr {
  display: block;
  height: 1px;
  background-color: $border-color;
  border: none;
  margin: 1.5rem 0;
}

img {
  max-width: 100%;
}

.boldr-icon {
  display: inline-block;
}

:root {
  :focus {
    outline: none !important;
  }
}

ul,
ol {
  padding-left: 0;

  ol,
  ul {
    padding-left: 1em;
  }
}

ol {
  padding-left: 0;

  li {
    list-style: none;
  }

  li:before {
    margin-right: 0.2em;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: $text-color;
  font-weight: $heading-font-weight;
  font-family: $heading-font-family;
}

span {
  font-style: inherit;
  font-weight: inherit;
}
