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

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

.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }


/* ---------- General ---------- */
body {
	font-family: 'Lucida Sans Typewriter', 'Lucida Console', monaco, 'Bitstream Vera Sans Mono', monospace;
	color: #5f6669;
	background: #000000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: #ffeb3b;
	outline: none;
	cursor: pointer;
}

a:hover,
a:focus {
	color: #fff;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}


/* ---------- Nav ---------- */
#header-nav {
	width: 100%;
	height: 50px;
	line-height: 50px;
	background: #000000;
	position: fixed;
	z-index: 999;
	overflow: hidden;
	top: 0;
}

h1#logo {
	display: inline-block;
	font-size: 1em;
	margin: 0;
	padding: 0;
	margin-left: 20px;
}

h1#logo a {
	color: white;
	outline: none;
	cursor: pointer;
}

h1#logo a:hover {
	color: #ffeb3b;
}

#menu {
	margin: 0;
	padding: 0;
	float: right;
	margin-right: 20px;
}

#menu a {
	display: inline-block;
	margin: 0;
	padding: 0 10px;
	outline: none;
	cursor: pointer;
}


/* ---------- Slideshow ---------- */
/* Icons */

.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

/* Buttons */
.btn {
	display: inline-block;
	margin: 0;
	padding: 0;
	cursor: pointer;
	pointer-events: auto;
	color: #ffeb3b;
	border: none;
	background: none;
}

.btn:focus {
	outline: none;
}

.btn:hover {
	color: #fff;
}

.btn--arrow {
	font-size: 1.5em;
	display: block;
}

.btn--arrow:nth-child(2) {
	margin: 0 0 0 0.5em;
}

.btn--arrow .icon {
	height: 0.5em;
}

.btn--github {
	font-size: 1.25em;
	position: fixed;
	right: 0;
	bottom: 0;
	margin: 0 1.5em 1.25em 0;
	color: #fff;
}

.btn--github:hover,
.btn--github:focus {
	color: #ffeb3b;
}


/* Slideshow nav (not part of plugin so we put the styles here) */
.slideshow__nav {
	position: absolute;
	pointer-events: none;
}

.no-js .slideshow__nav {
	display: none;
}

.slideshow__nav--arrows {
	font-size: 4em;
	right: 50px;
	bottom: 100px;
}
@media screen and (max-width: 45em) {
	.slideshow__nav--arrows {
		font-size: 2em;
		right: auto;
		bottom: 1em;
		left: 0.5em;
	}
}


/* ---------- Content ---------- */
.content {
	padding: 0 2em 8em;
	max-width: 1600px;
	margin: 0 auto;
}
@media screen and (max-width: 45em) {
	.content {
		font-size: 0.85em;
	}
}

.content p {
	margin: 0 0 1em;
}

.content--text p {
	font-size: 1.25em;
	line-height: 1.5;
	max-width: 600px;
}


.container {
	padding-top: 50px;
}


/* ---------- Contact ---------- */
#contact {
	text-align: center;
	padding: 200px 0;
}

#contact a {
}


/* ---------- Header ---------- */
.header {
	padding: calc(6vmax);
    padding-right: 0;
    padding-bottom: 0;
	position: fixed;
    z-index: 999999999;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 50em) {
    .header {
        position: relative;
        padding: 6vmax 4vmax;
    }
}

.ioapi .header::before {
	display: none;
}

.header__title {
	font-size: 1em;
	font-weight: bold;
	margin: 0;
	padding: 0em;
    float: left;
    margin-right: 1em;
}
@media screen and (max-width: 50em) {
    .header__title {
        float: none;
        margin-bottom: 1em;
    }
}

.title-sep {
    float: left;
    margin-right: 1em;
}
@media screen and (max-width: 50em) {
    .title-sep {
        display: none;
    }
}

/* Main Nav */
.main-nav ul {
    list-style: none;
    margin: 0;
}
@media screen and (max-width: 50em) {
    .main-nav ul {
        list-style: none;
        margin: 0;
        padding: 0em;
    }
}

.main-nav ul li {
    display: inline-block;
    margin-right: 0.5em;
}

li.link--current a {
	pointer-events: none;
	color: var(--color-link-hover);
}

.main-nav ul li {
    color: white;
}

/* Tagline */
.tagline {
	position: relative;
	display: block;
	margin-top: 1em;
}

.tagline ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tagline ul li {
    display: inline-block;
    margin-right: 0.5em;
    text-decoration: underline;
}


/* Filter */
.filter {
    padding-top: 8em;
    position: relative;
}

.filter #work {
    position: absolute;
    top: -8em;
}
@media screen and (max-width: 50em) {
    .filter {
        padding-top: 4em;
    }
    
    .filter #work  {
        top: 0;
    }
}

.filter ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.filter ul li {
    display: inline-block;
    margin: 0 1em;
}
@media screen and (max-width: 50em) {
    .filter ul li {
        padding-bottom: 1em;
        margin-bottom: 1em;
        font-size: 0.75em;
        margin: 0 0.75em;
    }
}

.filter ul li a.current {
    color: white;
}