:root {
	--container-width: 1000PX;

	--link-url-color: #fbe068;
	--link-url-color-hover: #db6551;
	--header-font-family: "Press Start 2P", system-ui;
}

body {
	height: 100%;
    margin: 0;
    background-image: url("images/num.gif");
    background-repeat: repeat;
    background-attachment: fixed;
	background-color: #a29444;
	background-blend-mode: hard-light;
}

/* Wrappers */
#page-wrapper {
	max-width: var(--container-width);
	margin: auto;
	padding: 1em;
}

#logo-and-music-wrapper {
	display: flex;
	margin-bottom: 1em;
}

#body-wrapper{
	display: flex;
	margin-top: 1em;
}


/* Core */
.item-container {
	background: #32383e;
	margin: 0em;
	margin-bottom: 1em;
	padding: 0em;
	flex-grow: 1;
}

.item-container-header {
	background-color: #D7574E;
	background: linear-gradient(0deg, rgba(215, 87, 78, 1) 0%, rgba(255, 240, 107, 1) 100%);
}

.item-container-body{
	padding: 1em;
}

.header-text {
	display: inline-block;
	border-bottom: .25rem solid white;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);

	margin: 0 1rem;
	padding: 0.6rem 0.75rem 0.3rem;

	font-family: var(--header-font-family);
	font-weight: 1000;
  	font-style: normal;
	color: white;
}

.center-text {
	text-align: center;
}

.center-margin {
	margin: auto;
}

figure {
	text-align: center;
}

figcaption {
	color: #999;
}

.quote {
	border-left: 0.25em solid #6a7177;
	padding: 0.5em;
}


/* Logo */
.logo-container {
	flex-grow: 1;
}

.logo-container-body {
	text-align: center;
}

.header-subtext {
	font-weight: 500;
	font-size-adjust: 0.6;
}

.logo-text {
	display: inline-block;

	font-family: var(--header-font-family);
  	font-style: normal;
	font-size-adjust: 0.5;
	color: white;
	margin-bottom: 0px;
}

.header-logo {
	max-width: 100%;
}


/* Music Sidebar */
.music-container {
	flex-grow: 0;
	margin-left: auto;
	margin-right: auto;
}
.music-container-body {
	height: 100%;
}
.music-container-body > iframe {
	display: block;
	margin: auto;
}


/* Links */
.link-container {
	font-family: "Press Start 2P", system-ui;
  	font-style: normal;
}

.link-group {
	display:flex;
	justify-content: space-evenly;
	margin-bottom: 0.5em;
}

.link-group-title {
	margin-top: 1.5em;
}

.link-url {
	color: var(--link-url-color);
	text-decoration: underline;
	font-size-adjust: 0.5;
}

.link-url.active{
	color: var(--link-url-color-hover);
}

.link-url:hover {
	color: var(--link-url-color-hover);
}

.link-hr {
	border-top: 1px dashed var(--link-url-color);
	margin: 1rem;
}



/* Main content */
.item-title {
    color: #e8e8e8;
}

.item-url {
    color: #e8e8e8;
}

/* Postmortem */
.article-card {
	display: flex;
	margin: 1em;
	padding: 1em;
	border: 1px dashed var(--link-url-color);
	border-radius: 10px;
}


/* Articles */
.article-image {
	height: 100%;
}

/* Code */
.codeblock {
	color: inherit;
}
