@charset "UTF-8";
// Morten Mitchell Larød 2019

* {
	box-sizing: border-box;
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box;
    -moz-font-feature-settings: "liga", "kern";
	-moz-font-feature-settings:"liga=1, kern=1";
	-ms-font-feature-settings:"liga", "kern";
	-o-font-feature-settings:"liga", "kern";
	-webkit-font-feature-settings:"liga", "kern";
	font-feature-settings: "liga", "kern";
	-webkit-font-smoothing: auto;
}
a { text-decoration: none;}
a:visited {  }
a:hover { text-decoration: underline; }
a:focus { outline: thin dotted;}
a:hover, a:active { outline: 0; }

img, object, embed, video { max-width: 100%; }

figcaption {font-weight: normal; }

body {
	font-family: $f-sans;
	color: $pale-black;
	font-size: 16px;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	height: 100%;
	position: relative;
}

html {
    height: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-family: $f-title;
	letter-spacing: -0.04em;
	line-height: 1.1;
}
a {
	color: $c-blue;
}

.hidden {
	visibility: hidden !important;
}
.hide {
	display: none !important;
}
.show {
	display: block !important;
}
.show-flex {
	display: flex;
}
