@font-face {
	font-family: 'Obviously';
	src: url('webfonts/Obviously-Regular.woff') format('woff');
	font-weight: 500;
}

@font-face {
	font-family: 'Obviously';
	src: url('webfonts/Obviously-Medium.woff') format('woff');
	font-weight: 600;
}

@font-face {
	font-family: 'Obviously';
	src: url('webfonts/Obviously-Bold.woff') format('woff');
	font-weight: 800;
}

:root {
	--white: #fff;
	--bg: #072180;
	--dark: #04104d;
	--light: #d9e2ff;
	--red: #ff8c8c;
	--orange: #ffb266;
	--yellow: #ffe14d;
	--green: #4dffc3;
	--cyan: #49f2f2;
	--blue: #4db5ff;
	--purple: #b38cff;
	--pink: #ff7ebf;
	--lightpink: #ffccea;
}

@supports (color: color(display-p3 1 1 1 / 1)) {
	:root {
	--bg: color(display-p3 0.03 0.13 0.50 / 1);
	--dark: color(display-p3 0.02 0.06 0.30 / 1);
	--light: color(display-p3 0.85 0.89 1.00 / 1);
	--red: color(display-p3 1.00 0.55 0.55 / 1);
	--orange: color(display-p3 1.00 0.70 0.40 / 1);
	--yellow: color(display-p3 1.00 0.88 0.30 / 1);
	--green: color(display-p3 0.30 1.00 0.76 / 1);
	--cyan: color(display-p3 0.29 0.95 0.95 / 1);
	--blue: color(display-p3 0.30 0.71 1.00 / 1);
	--purple: color(display-p3 0.70 0.55 1.00 / 1);
	--pink: color(display-p3 1.00 0.49 0.75 / 1);
	--lightpink: color(display-p3 1.00 0.80 0.92 / 1);
	}
}

::selection {
	background: var(--bg);
}

* {
	box-sizing: border-box;
}

body {
	color: var(--white);
	background-color: var(--bg);
	font-family: "Obviously", -apple-system, sans-serif;
	-moz-font-feature-settings: "salt";
	-webkit-font-feature-settings: "salt";
	font-feature-settings: "salt";
	font-size: 12px;
	font-weight: 500;
	line-height: 16px;
	text-shadow: 0 4px 2px rgba(0, 0, 0, 0.125);
}

em {
	font-weight: 600;
	font-style: normal;
}

#container {
/*	background-image: url("Grid.png");
	background-size: 64px;*/
	width: 912px;
}

#nav {
	margin: 16px;
	height: 96px;
	text-transform: uppercase;
	font-weight: 800;
}

.table {
	display: table;
	margin: auto;
	width: 880px;
}

#avatar {
	width: 64px;
	height: 64px;
	margin: 16px;
	border-radius: 32px;
	display: inline-block;
	position: relative;
	box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

h1 {
	color: var(--white);
	font-size: 20px;
	font-weight: 800;
	font-style: normal;
	font-size: 26px;
	display: inline-block;
	top: -38px;
	position: relative;
	margin: 0;
}

h1 span.accent {
	color: var(--lightpink);
}

#menu {
	font-size: 20px;
	list-style: none;
	display: inline-block;
	position: relative;
	top: 25px;
	float: right;
	margin: 16px;
}

#menu li {
	display: inline;
	margin: 0 0 0 16px;
}

a {
	color: var(--pink);
	text-decoration: none;
	position: relative;
	top: 0;
	transition: 0.25s ease-out;
}

a:hover {
	color: var(--white);
	text-decoration: none;
	position: relative;
	top: -4px;
	text-shadow: 0 8px 12px rgba(0, 0, 0, 0.375);
	transition: 0.125s ease-out;
}

a#current {
	color: var(--white);
}

a:active, a:active#current {
	color: var(--pink);
	opacity: .5;
	text-decoration: none;
	position: relative;
	top: 0;
	text-shadow: 0 4px 2px rgba(0, 0, 0, 0.125);
	transition: 0.125s ease-out;
}

.grid {
	width: 832px;
	margin: 0 32px 16px 32px;
	display: inline-grid;
	grid-gap: 16px;
}

.grid img {
	border-radius: 8px;
	box-shadow: 0 4px 2px rgba(0, 0, 0, 0.125);
	transition: 0.25s ease-out;
}

.grid.blueprints img {
	border-radius: 2px;
}

.grid a img:hover {
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.375);
	transition: 0.125s ease-out;
}

#sixupgrid {
	grid-template-columns: auto auto auto auto auto auto;
}

.sixup {
	width: 128px;
}


#fourupgrid {
	grid-template-columns: auto auto auto auto;
}

.fourup {
	width: 200px;
/*	height: 150px; */
}

#threeupgrid {
	grid-template-columns: auto auto auto;
}

.threeup {
	width: 272px;
/*	height: 204px; */
}

#twoupgrid {
	grid-template-columns: auto auto;
}

.twoup {
	width: 416px;
/*	height: 312px; */
}

#oneupgrid {
	grid-template-columns: auto;
}

.oneup {
	width: 848px;
/*	height: 318px; */
}

#footer {
	height: 128px;
	margin: 32px 32px;
}

#footer p {
	color: var(--light);
	text-align: center;
	margin: 0 auto;
}

#footer a {
	font-weight: 600;
	color: var(--white);
}

#footer a:hover {
	top: -2px;
	color: var(--pink);
}

#footer a:active {
	top: 0px;
}