* { box-sizing: border-box;}
img { max-width: 100%; }

.supports::after {
  content: "Your browser is using the fallback styles.";
  display: block;
  text-align: center;
  border: 1px solid rgb(255,84,104);
  background-color: rgba(255,84,104,0.2);
  padding: 10px;
}

@supports (display: flex) {
  .supports::after {
    content: "Your browser is using the flexbox styles.";
    border: 1px solid rgb(250,190,77);
  background-color: rgba(250,190,77,0.2);
  }
}

@supports (display: grid) {
  .supports::after {
    content: "Your browser is using the grid layout styles.";
    border: 1px solid rgb(77,250,144);
    background-color: rgba(77,250,144,0.2);
  }
}


/*! Typebase.less v0.1.0 | MIT License */
/* Setup */
html {
  /* Change default typefaces here */
font-family: Gill Sans,Gill Sans MT,Calibri,sans-serif;
  font-size: 110%;
  -webkit-font-smoothing: antialiased;
}
/* Copy & Lists */
p {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
ul li,
ol li {
  line-height: 1.5rem;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}
blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* Change heading typefaces here */
  font-family: sans-serif;
  margin-bottom: 0;
  line-height: 1.5rem;
}
h1 {
  font-size: 4.242rem;
  line-height: 4.5rem;
  margin-top: 3rem;
}
h2 {
  font-size: 2.828rem;
  line-height: 3rem;
  margin-top: 3rem;
}
h3 {
  font-size: 1.414rem;
}
h4 {
  font-size: 0.707rem;
}
h5 {
  font-size: 0.4713333333333333rem;
}
h6 {
  font-size: 0.3535rem;
}
/* Tables */
table {
  margin-top: 1.5rem;
  border-spacing: 0px;
  border-collapse: collapse;
}
table td,
table th {
  padding: 0;
  line-height: 33px;
}
/* Code blocks */
code {
  vertical-align: bottom;
}
/* Leading paragraph text */
.lead {
  font-size: 1.414rem;
}
/* Hug the block above you */
.hug {
  margin-top: 0;
}