@charset "UTF-8";
/* CSS Document */

@import url("https://use.typekit.net/cgt0vkw.css");

html {-webkit-text-size-adjust: 100%;}

.background-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, #e7e6e0 1px, transparent 1px),
    linear-gradient(to bottom, #e7e6e0 1px, transparent 1px);

  z-index: -1;
  pointer-events: none;

  /* iOS Safari optimizations */
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

body {
	background-color: #f3f2ec;
    text-align: left;
	margin: 4% 4% 25px 4%;
}

/* Layout */

.containerNegMargin {
	width: 100%;
	margin: 0 0 0 -15px;
}

.entryCard {
    display: inline-block;
	vertical-align:top;
	max-width: 300px;
	margin: 0 15px 60px 15px;	
}


/* Links */

a:link {
	color: #000000;
	text-decoration: underline;
	text-decoration-thickness: 1px;	
}

a:visited {
	color: #000000;
	text-decoration: underline;
	text-decoration-thickness: 1px;	
}

a:hover {
	color: #000000;
	text-decoration: none;	
}

::-moz-selection { /* Code for Firefox */
  color: #f3f2ec;
  background: #000000;
}

::selection {
  color: #f3f2ec;
  background: #000000;
}


/* Typography */

.masthead {
	font-family: area-normal, sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 27px;
	line-height: 1.1;
	text-transform: uppercase;
	color: #000000;
    margin: 0 0 120px 0;
}

.bodyText {
    font-family: 'logic-monospace', mono;
    font-weight: 400;
    font-style: normal;
	font-size: 14px;
	line-height: 1.4;
	color: #000000;
    text-underline-offset: 4px;
    margin: 0 0 7px 0;
}

.italic {
	font-style: italic;
}

.caption {
	font-family: area-normal, sans-serif;
	font-size: 9px;
	line-height: 1.7;
	font-weight: 900;
	text-transform: uppercase;
    letter-spacing: 0.06em;	
	color: #000000;
	margin: 8px 0 0 0;
    text-underline-offset: 2.5px;
	}

/* Images */

img {
	max-width: 100%;
	height: auto;
	float: left;
	margin: 0 0 15px 0;
	border: none;
	}

.border img {
transition: .2s ease;
}

.border img:hover {
box-shadow: 0 0 0 2px #000000;
transition: .2s ease;
}
	


}