/* F&K — Foundation */

/* =========================================
   VARIABLES
========================================= */

:root {
    --fk-red:#c40012;
    --fk-black:#080808;
    --fk-dark:#111111;
    --fk-grey:#d4d4d4;
    --fk-light:#eeeeee;
    --fk-line:rgba(255,255,255,.14);
}


/* =========================================
   BASE
========================================= */

* {
    box-sizing:border-box;
}

html,
body {
    margin:0;
    padding:0;
    background:var(--fk-black);
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

a {
    color:inherit;
    text-decoration:none;
}

.screen-reader-text {
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}
