@charset "UTF-8";

/* css reset */
/* via: http://meyerweb.com/eric/tools/css/reset */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

/* keep sizes the same, even with borders/padding */
*, *:after, *:before {
	-webkit-box-sizing:	border-box;
 	-moz-box-sizing: 	border-box;
 	box-sizing: 		border-box;
}

/* fonts */
@font-face {
	font-family: "Cooper Hewitt Book";
	src:         url('fonts/CooperHewitt-Book.woff2') format('woff2'),
				 url('fonts/CooperHewitt-Book.woff')  format('woff'),
				 url("fonts/CooperHewitt-Book.otf");
	font-weight: normal;
	font-style:  normal;
}
@font-face {
	font-family: "Cooper Hewitt Bold";
	src:         url('fonts/CooperHewitt-Bold.woff2') format('woff2'),
				 url('fonts/CooperHewitt-Bold.woff')  format('woff'),
				 url("fonts/CooperHewitt-Bold.otf");
	font-weight: normal;
	font-style:  normal;
}
@font-face {
	font-family: "Cooper Hewitt Heavy";
	src:         url('fonts/CooperHewitt-Heavy.woff2') format('woff2'),
				 url('fonts/CooperHewitt-Heavy.woff')  format('woff'),
				 url("fonts/CooperHewitt-Heavy.otf");
	font-weight: normal;
	font-style:  normal;
}

html, body {
	font-family:      "Cooper Hewitt Book", Helvetica, Arial, sans-serif;
	font-size:        16px;
	background-color: rgb(255, 246, 222);
}

h1 {
	font-family:    "Cooper Hewitt Heavy", Helvetica, Arial, sans-serif;
	font-size:      2.6em;
	line-height:    1.3em;
	text-transform: uppercase;
}
h2 {
	font-family: "Cooper Hewitt Heavy", Helvetica, Arial, sans-serif;
	font-size:   1.6em;
	line-height: 1.3em;
}
h2 a {
	text-decoration: none;
}
p, ul {
	font-size:   1em;
	line-height: 1.3em;
}

a, a:active, a:visited {
	color:       black;
	transition:  color 0.3s;
}
a:hover {
	color:       rgb(90, 86, 12);
}

em {
	font-style:  italic;
}

::-moz-selection, ::selection {
	background-color: rgb(90, 86, 12);
	color:            white;
}

#wrapper {
	width:     90%;
	max-width: 800px;
	margin:    2em auto 6em auto;
}
section {
	margin-bottom: 3em;
}

#coneDiagram {
	text-align:    center;
}

#header {
	text-align:    center;
}
#header ul {
	margin:        0.6em 0;
}
#header ul li {
	line-height:   1.6em
}

#about {
	text-align:    justify;
}
#about p {
	margin-bottom: 1.3em;
}
.byline {
	text-align:    right;
}

#listOfWorks {
	padding-top:   1.3em;
	text-align:    center;
}
#listOfWorks a {
	font-family:   "Cooper Hewitt Bold", Helvetica, Arial, sans-serif;
}
#listOfWorks ul {
	margin-top:    1.3em;
}

.artwork {
	width:         100%;
	padding-top:   2em;	   /* so # hits above the image nicely */
}
.artwork img {
	width:         100%;
	border:        1px solid rgba(0,0,0, 0.5);
	margin-bottom: 1em;
}
.vimeo {
	position:       relative;
	max-width:      100%;
	height:         0;
	overflow:       hidden;
	margin-bottom:  1em;
	padding-bottom: 56.25%;
	border:         1px solid rgba(0,0,0, 0.5);
}
.vimeo iframe, .vimeo object, .vimeo embed {
	position:       absolute;
	top:            0;
	left:           0;
	width:          100%;
	height:         100%;
}
.media li {
	line-height:   1.6em;
}
.projectDescription {
	margin-top:    1.6em;
	text-align:    justify;
}
.projectLink {
	margin:        2.6em 0.6em 0 0;
	text-align:    center;
	font-family:   "Cooper Hewitt Bold", Helvetica, Arial, sans-serif;
}
.projectLink a {
	padding:          0.8em 1em;
	border-radius:    0.6em;
	background-color: black;

	color:            rgb(255, 246, 222);
	text-decoration:  none;
	
	transition:       all 0.6s;
}
.projectLink a:hover {
	background-color: rgb(0, 181, 239);
	color:            white;
}

#colophon {
	margin-top:    6em;
	text-align:    center;
}
#colophon svg {
	width:         150px;
	margin-bottom: -1.6em;
	transition:    fill 0.3s;
}
#colophon svg:hover {
	fill:          rgb(90, 86, 12);
}


/* larger screens */
@media screen and (min-width: 700px) {
	h1 {
		font-size:     3em;
	}
	#wrapper {
		margin-top:    3em;
	}
	#header ul li, .media li {  /*#listOfWorks ul li, */
		display:       inline;
	}
	#header ul li+li:before, .media li+li:before { /* #listOfWorks ul li+li:before, */
		content:       "\00a0\00a0|\00a0\00a0\00a0";
	}
	.jumpArrow {
		display: none;
	}
	.projectLink {
		text-align:    left;
	}
	#colophon svg {
		width:         200px;
		margin-bottom: -1em;
	}
}

