@import 'variables-responsive';
@import 'theme-colors';

* {
  font-family: 'Lato', sans-serif, Arial, Helvetica, sans-serif;
  font-display: swap;
}

html > body {
  // There are many breaking layouts
  // This can be addressed in a future commit
  // See IM-1731
  //background-color: #f5f5f5;
  font-family: 'Lato', sans-serif, Arial, Helvetica, sans-serif;
  font-display: swap;
  line-height: 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: $im-dark-gray;
  font-weight: 900;
  line-height: 1.5em;
}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 20px;
}
@media(min-width: $im-min-desktop-width) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
}
h3 {
  font-size: 18px;
}

p {
  color: $im-dark-gray;
  font-size: 16px;
  line-height: 1.6em;
}
.smallfont {
  font-size: 14px;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: $im-primary-red;
  &:hover {
    text-decoration: none;
    color: $im-primary-red-hover;
  }
}

a {
  &:hover,
  &:focus {
    text-decoration: none;
    outline: none;
  }
}

.im-red {
  color: $im-primary-red;
}
.im-red-hover {
  color: $im-primary-red-hover;
}

.im-modal-header {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 3px;
}

.im-modal-sub-header {
  color: $im-gray;
  font-size: 14px;
  margin-bottom: 25px;
}
