@font-face {
	font-family: "GTWalsheim";
	src: url("../fonts/GT-Walsheim-Regular.woff") format("woff"),
	     url("../fonts/GT-Walsheim-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: "GTWalsheim";
	src: url("../fonts/GT-Walsheim-Bold.woff") format("woff"),
	     url("../fonts/GT-Walsheim-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}
* {
	margin: 0;
	padding: 0;
	outline: none;
}
/*
::-moz-selection {
	color: #fff;
	background: #000;
}
::selection {
	color: #fff; 
	background: #000;
}
*/
html {
	font-family: "GTWalsheim", sans-serif;
	font-size: 1em;
	font-weight: normal;
	line-height: 1.3;
	-webkit-text-size-adjust: none;
/* 	text-size-adjust: none; */
}
body {
	color: #000;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
}
#page {
	max-width: 960px;
	margin: 0 auto;
}

/* !NAVIGATION */

nav {
	width: 200px;
	position: fixed;
	padding: 32px;
	box-sizing: border-box;
	font-size: 1.25rem;
	line-height: 1.5;
}
nav a {
	color: inherit;
	text-decoration: none;
}
nav a:hover {
/* 			text-decoration: underline; */
/* 			font-weight: bold; */
	border-bottom: 0.075em solid;
}
nav a:active {
	border-bottom: none;
}
nav ul {
	list-style-type: none;
}
@media (max-width: 720px) {
	nav {
		padding: 12px 32px;
		width: 100%;
		line-height: 1;
		background-color: #fff;
/* 		box-shadow: 0px 4px 8px rgba(0,0,0,0.1); */
	}
	@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
		nav {
			background-color: rgba(255,255,255,0.8);
			-webkit-backdrop-filter: blur(10px);
			        backdrop-filter: blur(10px);
		}
	}
	@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
	    nav {
		    border-bottom: 0.5px solid #ccc;
	    }
	}
	nav ul {
		display: flex;
/* 				justify-content: space-between; */
	}
	nav li {
		margin-right: 1em;
	}
	nav li:last-child {
		margin-right: 0;
	}
}
@media (max-width: 460px) {
	nav {
		padding: 8px 16px;
		font-size: 1rem;
/* 		box-shadow: 0px 2px 4px rgba(0,0,0,0.1); */
/* 		border-bottom: 1px solid rgba(0,0,0,0.05); */
	}
	nav ul {
		justify-content: space-around;
	}
}

/* !MAIN */

main {
	margin-left: 200px;
}
@media (max-width: 720px) {
	main {
		margin-left: 0;
		padding-top: calc(1.25rem + 12px + 12px);
	}
}
@media (max-width: 460px) {
	main {
		padding-top: calc(1rem + 8px + 8px);
	}
}

@keyframes flash {
	0% {
		background-color: #ccc;
/* 				background-color: #FFF2B3; */
/* 				background-color: #0075DB; */
	}
	100% {
		background-color: #fff;
	}
}
:target {
	animation-name: flash;
	animation-duration: 1s;
}
main article {
	padding: 32px;
/* 			box-sizing: border-box; */
}
@media (max-width: 420px) {
	main article {
		padding: 32px 16px;
	}
}
main article > :last-child {
/* 			background-color: red; */
	margin-bottom: 0;
}
#logo, #color, #type {
/* 			border: 1px solid; */
}
main h1 {
	font-size: 36px;
	margin-bottom: 2rem;
}
main a {
	color: inherit;
	text-decoration: underline;
}
main a:active {
	text-decoration: none;
}
main p {
	max-width: 500px;
	margin-top: 1em;
}
/* figure */
main figure {
	margin-bottom: 2em;
}
main figure img {
	display: block;
	width: 100%;
	height: auto;
	background-color: #F2F2F2;
}
/* figuredark */
main figuredark {
	margin-bottom: 2em;
}
main figuredark img {
	display: block;
	width: 100%;
	height: auto;
	background-color: #adadad;
}
/* table */
main table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 2em;
	-webkit-font-feature-settings: "tnum";
	   -moz-font-feature-settings: "tnum";
	        font-feature-settings: "tnum";
}
main table th,
main table td {
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #000;
	padding: 0.4em;
	box-sizing: border-box;
}
main table th {
	font-weight: bold;
}
main table thead th {
	text-transform: uppercase;
	font-size: 0.75em;
	font-weight: bold;
}
main table tr :nth-child(1) {
	width: 2em;
}
main table tr :nth-child(4),
main table tr :nth-child(5) {
/* 			background-color: blue; */
	white-space: nowrap;
}
@media (max-width: 520px) {
	main table th,
	main table td {
		display: block;
		border-bottom: 1px solid #ccc;
		padding: 0.1em 0;
	}
	main table tr td:last-child {
		border-bottom: 0;
	}
	main table thead {
		display: none;
	}
	main table tr {
/* 				border-top: 1px solid #000; */
		border-bottom: 1px solid #ccc;
	}
	main table tr :nth-child(1) {
		width: 100%;
		height: 2em;
	}
	main table tr :nth-child(3)::before { content: "Pantone: "; }
	main table tr :nth-child(4)::before { content: "CMYK: "; }
	main table tr :nth-child(5)::before { content: "RGB: "; }
	main table tr :last-child {
		padding-bottom: 2em;
	}
}
/* grid */
main .grid {
	list-style-type: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: end;
	grid-column-gap: 1em;
	     column-gap: 1em;
	grid-row-gap: 2em;
	     row-gap: 2em;
}
main .grid figure {
	margin-bottom: 0.5em;
}
main .grid img {
	display: block;
	width: 100%;
	height: auto;
}
@media (max-width: 520px) {
	main .grid {
		grid-template-columns: 1fr;
	}
}
/* download */
main .download {
	list-style-type: none;
	line-height: 2;
	margin-top: 0.5em;
}
main .download a {
	text-decoration: none;
	background-image: url(../images/icon-file-generic.svg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1.5em;
}
main .download a:hover {
	text-decoration: underline;
}
main .download a:active {
	text-decoration: none;
}
main .download li.icon-zip a {
	background-image: url(../images/icon-file-zip.svg);
}
main .download li.icon-pdf a {
	background-image: url(../images/icon-file-pdf.svg);
}
main .download li.icon-image a {
	background-image: url(../images/icon-file-image.svg);
}
main .download li.icon-ms-word a {
	background-image: url(../images/icon-file-ms-word.svg);
}
main .download li.icon-ms-excel a {
	background-image: url(../images/icon-file-ms-excel.svg);
}
main .download li.icon-ms-powerpoint a {
	background-image: url(../images/icon-file-ms-powerpoint.svg);
}
main .download li.icon-affinity a {
	background-image: url(../images/icon-file-affinity.svg);
}
main .download li.icon-colordef a {
	background-image: url(../images/icon-file-colordef.svg);
}

/* !PAGE-FOOTER */

#page-footer {
	margin-top: 32px;			
	display: flex;
	background-image: linear-gradient(#000 0%, #000 100%);
	background-size: calc(100% - 64px) 1px;
	background-repeat: no-repeat;
	background-position-x: 32px;
}
#page-footer .brand,
#page-footer .description {
	padding: 32px;
/* 			opacity: 0.5; */
	box-sizing: border-box;
}
#page-footer .brand {
	min-width: 200px;
}
#page-footer a {
	color: inherit;
	white-space: nowrap;
}
@media (max-width: 720px) {
	#page-footer .brand {
		min-width: 140px;
	}
}
@media (max-width: 460px) {
	#page-footer {
		flex-direction: column;
		padding: 32px;
	}
	#page-footer .brand,
	#page-footer .description {
		padding: 0;
	}
	#page-footer .brand {
		min-width: auto;
	}
	#page-footer .description {
		margin-top: 1rem;
	}
}
@media (max-width: 420px) {
	#page-footer {
		flex-direction: column;
		padding: 16px;
		padding-top: 32px;
		background-position-x: 16px;
		background-size: calc(100% - 32px) 1px;
	}
	#page-footer .brand img {
		width: 26vw;
		height: auto;
	}
}
