/*! Supernews UI - Base Styles (Theme "SN") */

/***
  title: Base
  description: This component provides all theme specific base styling.
***/

@font-face {
  font-family: 'WCROUGHTRADBtaRegular';
  src: url('/fonts/WC_RoughTrad-webfont.eot');
  src: url('/fonts/WC_RoughTrad-webfont.eot?#iefix') format('embedded-opentype'),
       url('/fonts/WC_RoughTrad-webfont.woff') format('woff'),
       url('/fonts/WC_RoughTrad-webfont.ttf') format('truetype'),
       url('/fonts/WC_RoughTrad-webfont.svg#WCROUGHTRADBtaRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
}
body {
  font-family: 'Rubik', Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  color: #555;
  background: #fff;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1,
h2,
h3 {
  margin-bottom: 24px;
  color: #333;
}
h1 {
  font-size: 5.2rem;
  line-height: 54px;
}
h2 {
  font-size: 3rem;
}
p {
  font-size: 1.8rem;
  font-weight: 100;
  line-height: 30px;
}
a {
  color: #24bae6;
  cursor: pointer;
  text-decoration: none;
}
a:hover,
a:active {
  color: #18a8d2;
}
@media screen and (min-width: 1200px) {
  /* Typography */
  h1 {
    font-size: 7.2rem;
    line-height: 69px;
  }
}
@media (min-width: 900px) and (max-width: 1199px) {
  /* Typography */
  h1 {
    font-size: 6rem;
    line-height: 60px;
  }
}
@media screen and (min-width: 600px) {
  /* Typography */
  h2 {
    font-size: 4.1rem;
  }
  p {
    font-size: inherit;
  }
}
@media screen and (max-width: 599px) {
  html {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}