*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    color: #333;
    background: #555;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}

body {
    overflow: hidden;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre {
    margin: 0;
}

button {
    background: transparent;
    border: 0;
    padding: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

iframe {
    border: 0;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: $color-link;
    &:visited,
    &:hover,
    &:active {
        color: $color-link;
    }
}

/**
 * Suppress the focus outline on links that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 */

[tabindex="-1"]:focus {
    outline: none !important;
}

code,
pre {
    font-family: Hack, Consolas, Monaco, 'Andale Mono', monospace;
}
