/**

* Reset some basic elements
*/

body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, hr, dl, dd, ol, ul, figure {

margin: 0;
padding: 0;

}

/**

* Basic styling
*/

body {

font: $base-font-weight #{$base-font-size}/#{$base-line-height}
  $base-font-family;
color: $text-color;
background-color: $background-color;
-webkit-text-size-adjust: 100%;
-webkit-font-feature-settings: "kern" 1;
-moz-font-feature-settings: "kern" 1;
-o-font-feature-settings: "kern" 1;
font-feature-settings: "kern" 1;
font-kerning: normal;
display: flex;
min-height: 100vh;
flex-direction: column;

}

/**

* Set `margin-bottom` to maintain vertical rhythm
*/

h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, ol, dl, figure, %vertical-rhythm {

margin-bottom: $spacing-unit / 2;

}

/**

* `main` element
*/

main {

display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */

}

/**

* Images
*/

img {

max-width: 100%;
vertical-align: middle;

}

/**

* Figures
*/

figure > img {

display: block;

}

figcaption {

font-size: $small-font-size;

}

/**

* Lists
*/

ul, ol {

margin-left: $spacing-unit;

}

li {

> ul,
> ol {
  margin-bottom: 0;
}

}

/**

* Headings
*/

h1, h2, h3, h4, h5, h6 {

font-weight: $base-font-weight;

}

/**

* Links
*/

a {

color: $accent-color;
text-decoration: none;

&:hover {
  color: lighten($accent-color, 10%);
}

}

/**

* Blockquotes
*/

blockquote {

color: darken($text-color, 30%);
border-left: 4px solid $accent-color;
padding-left: $spacing-unit / 2;
@include relative-font-size(1.125);
letter-spacing: -1px;
font-style: italic;

> :last-child {
  margin-bottom: 0;
}

}

pre, code {

font-family: $code-font-family;
@include relative-font-size(0.9);
border-radius: 3px;
background-color: lighten($background-color, 15%);

}

/**

*/ code {

padding: 1px 5px;

}

/**

* Code formatting
*/

pre {

padding: 8px 12px;
overflow-x: auto;

code {
  margin: 0;
  padding: 0;
  border: none;
}

}

/**

* Wrapper
*/

.wrapper {

max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2));
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2));
margin-right: auto;
margin-left: auto;
padding-right: $spacing-unit;
padding-left: $spacing-unit;
@extend %clearfix;

@include media-query($on-laptop) {
  max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
  max-width: calc(#{$content-width} - (#{$spacing-unit}));
  padding-right: $spacing-unit / 2;
  padding-left: $spacing-unit / 2;
}

}

/**

* Clearfix
*/

%clearfix:after {

content: "";
display: table;
clear: both;

}

/**

* Icons
*/

.svg-icon {

width: 16px;
height: 16px;
display: inline-block;
fill: #{$accent-color};
padding-right: 5px;
vertical-align: text-top;

}

/**

* Tables
*/

table {

margin-bottom: $spacing-unit;
width: 100%;
text-align: $table-text-align;
color: lighten($text-color, 18%);
border-collapse: collapse;
border: 1px solid darken($background-color, 6%);
tr {
  &:nth-child(even) {
    background-color: lighten($background-color, 4%);
  }
}
th,
td {
  padding: ($spacing-unit / 3) ($spacing-unit / 2);
}
th {
  background-color: lighten($background-color, 15%);
  border: 1px solid lighten($background-color, 30%);
  border-bottom-color: lighten($background-color, 20%);
}
td {
  border: 1px solid lighten($background-color, 30%);
}

}