* {
	margin: 0;
	padding: 0;
	border: none;
	list-style: none;
}

html {
	font-size: 62.5%;
}

body {
	font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
	background-color: #eee;
	margin: 1rem 0;
}

header {
	text-align: center;
}

header a  {
	text-decoration: none;
	border-bottom: 1px dotted;
}

header h1 {
	margin-bottom: .2rem;
	font-size: 2.4rem;
}

header #credit, header #email {
	margin-top: .5rem;
	font-size: 1.5rem;
	margin-bottom: .5rem;
}

main {
	background-color: white;
	border: 1px solid #ccc;
	width: 320px;
	margin: 1.5rem auto;
}

.puzzle {
	text-align: left;
}

.puzzle:not(:first-child) a {
	border-top: 1px solid #ddd;
}

.puzzle a {
	margin: 0 1rem;
	text-decoration: none;
	color: black;
	display: grid;
	align-items: center;
	width: 30rem;
	grid-template-columns: 5rem 10.5rem 5rem 9.5rem;
	grid-template-rows: auto auto;
	column-gap: 0;
	row-gap: 0;
	grid-template-areas: 
	"id type type type"
	"id words size date";
}

.puzzle:hover {
	background-color: #f3f3f3;
}

.puzzle p {
	font-size: 1.4rem;
	color: #333;
}

.puzzle .id {
	grid-area: id;
	margin: 1.2rem 0;
	font-size: 1.8rem;
	width: 4rem;
	padding: 1rem 0;
	border-radius: 5px;
	text-align: center;
}

.puzzle .id.easy {
	color: #137333;
	background-color: #e6f4ea;
}
.puzzle .id.intermediate {
	color: #8f7e00;
	background-color: #ffefbf;
}

.puzzle .id.hard {
	color: #c5221f;
	background-color: #fce8e6;
}

.puzzle .id.search {
	color: #1967d2;
	background-color: #e8f0fe;
}

.puzzle .type {
	color: #444;
	font-size: 1.5rem;
	font-weight: bold;
	grid-area: type;
	align-self: end;
}

.puzzle .words, .puzzle .size, .puzzle .date {
	font-family: monospace;
	color: #444;
	font-size: 1.5rem;
	align-self: start;
}

.puzzle .words {
	grid-area: words;
}

.puzzle .size {
	grid-area: size;
	text-align: center;
}

.puzzle .date {
	grid-area: date;
	text-align: right;
	padding-right: 5px;
}

body.puzzlePage {
	margin: 1rem 2rem;
	background-color: white;
}

body.puzzlePage, .Clues, .GridClues {
	font-size: 1.2rem;	
	font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif!important;
}

.puzzlePage h1 {
	margin: 2rem 0;
}

.puzzlePage h1 a {
	color: black;
	text-decoration: none;
}

.PuzTitle {
	font-size: 15pt; color: #800000; font-weight: bold;
}

.CopyTag {
	font-size: 10pt; color: #999999
}

.pdf {
	margin: 2rem 0;
	font-size: medium;
}

.puzzlePage h2 {
	font-size: 2rem;
	margin: 2rem 0;
}