@import "https://use.typekit.net/rjj5vdz.css";
/* http://meyerweb.com/eric/tools/css/reset/
   v4.0 | 20180602
   License: none (public domain)
*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * strip unit
 * ---
 * Remove the unit from a css string
 * e.g. 16px
 *
 * @param  {string} $number a css unit string
 * @return {number}         number without unit
 */
/**
 * rem-size
 * ---
 * Convert pixels into rems
 * e.g. 160px = 10rem
 *
 * @param  {string}   $pixels Pixel amount to convert to rems
 * @return {string}           Rem units
 */
/**
 * rs
 * ---
 * Take a grid number and convert to equivalent rem size
 * e.g.
 *   baseline = 8px (0.5rem)
 *   rs(4)    = 32px (2rem)
 *
 * Second param can be used to modify size by pixel amount.
 * e.g. to take into account for a 1px top and bottom border
 * you would do:
 *   rs(4, 2) = 30px (1.875rem)
 *
 * @param  {string}   $ratio  Amount of grid items to size to
 * @param  {string}   $mod    Modifier pixel amount (by defult this is subtracted from the returned value)
 * @return {string}
 */
* {
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: proxima-nova, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
}

.header {
  background: #191919;
  color: #FFF;
  padding: 4rem 1rem 1rem;
  text-align: center;
  position: relative;
}
.header__smile {
  height: auto;
  width: 100vw;
}

.body {
  padding: 3rem 1rem;
  text-align: center;
}

h1 {
  font-size: 3rem;
  line-height: 3rem;
}

h2 {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

.button {
  color: #FFF;
  background: #CE3527;
  border-radius: 1.5rem;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 3rem;
  height: 3rem;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
  text-decoration: none;
}

/*# sourceMappingURL=demo-ideal-halo.css.map */