
/* Colors */
body 	{ background-color: white;
		  color: black;
		  /*background-color: var(--navy); 
		  color: white;*/ }
hr 		{ background-color: white; }


/* Font Sizes */
body 	{ font-size: 20px; }
p 		{ font-size: 100%; }
h1		{ font-size: 100%; }
h3		{ font-size: 200%; }
#menu	{ font-size: 135%; }
.credit { font-size: 80%;
padding-bottom: 1rem; }

.mask-title {
	padding-top: 1rem;
	font-size: 110%;
}

body {
	font-family: 'News Cycle', sans-serif;
	font-weight: lighter;
}
hr {
	margin: 50px;
	border: none;
	height: .5px;
}
h1 {
	font-family: 'Google Sans', sans-serif;
	font-weight: normal;
	letter-spacing: 0em;
	
	margin-bottom: 0px;
}
header>h1 {
	line-height: 0.9;
}
.byline {
	font-family: 'Wire One';
	letter-spacing: 2px;
	font-weight: normal;
}
h2 {
	font-family: 'Google Sans';
	letter-spacing: 0.2em;
}
h4 { /* Mask names */
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: bold;
	font-size: 250%;
	letter-spacing: 0em;
	font-weight: medium;
	margin: 2px;
	line-height: .9;
	padding: 5px 0px;
}
footer {
	color: darkgrey;
	margin-top: 100px;
	margin-bottom: 100px;
	text-align: center;
	letter-spacing: 1.1px;
}
p,li {
	font-family: Helvetica;
}
.sidenote {
	font-family: serif;
	font-style: italic;
	font-size: 80%;
}
a {
	text-decoration: none;
	color: black;
}

model-viewer {
	width: 90vw;
	height: 60vh;
}

.grid-container {
	display: grid; 
	grid-template-columns: 1fr 1fr 1fr; 
	grid-column-gap: 30px;
}

@media ( max-width: 850px ) {
  .grid-container {
	display: grid; 
	grid-template-columns: 1fr 6fr 1fr; 
	grid-column-gap: 30px;
  }
}

/* Rightward triangle. Only if screen is wide enough to have cards to the right of the menu. */
@media only screen and (min-width: 580px) { 
	a.active:after { 
		width: 0; 
		height: 0; 
		content: ''; /* Otherwise the pseudo-element won't be created */
		border-top: 13px solid transparent;
		border-bottom: 13px solid transparent;
		border-right: 10px solid transparent;
		border-left: 10px solid var(--softblue);
		position: absolute;
		transform: translate(7px, -1.7px);
		z-index: 2;
	}
}

