@font-face {
    font-family: 'Conthrax';
    src:
		url('fonts/conthrax-sb.otf')
		format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'New Brilliant';
    src:
		url('fonts/new-brilliant.otf')
		format('opentype');
    font-weight: normal;
    font-style: normal;
}


:root {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 12px;
}

/*  defaults  */

body, html {
	height: 100%;
	width: 100%;
	margin: 0;
}

body {
	font-family: 'Calibri','Verdana',sans-serif;
	background-color: #000000;
	color: #808080;
}

a {
	color: #f00d0d;
	background-color: inherit;
	text-decoration: none;
}
	a:hover {
		color: #DC1313;
		background-color: inherit;
		text-decoration: underline;
	}

	a:focus {
		outline: none;
	}

h1 {
	display: none;
	margin-bottom: 0.5em;
	padding-top: 1em;
	font-size: 1.5em;
	font-family: 'Tahoma',sans-serif;
	clear: both;
}

hr {
	clear: both;
	margin: 2px auto;
	text-align: center;
	background-color: #C0C0C0;
	color: inherit;
	width: 100%;
	max-width: 100%;
	height: 1px;
	max-height: 1px;
}

/*  structure  */

#page-wrapper {
	align-content: center;
	align-items: center;
	display: flex;
	height: 100%;
	flex-direction: row;
	justify-content: space-evenly;
	flex-wrap: wrap;
	width: 100%;
	background-image: url("https://v2.sonicunicorn.com/images/bg.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
#page-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* background-logo shade */
	background-image: none;
	background-size: auto;
	background-image:
		linear-gradient(
			45deg, rgba(0, 0, 0, 0.3) 25%,
			transparent 25%,
			transparent 50%,
			rgba(0, 0, 0, 0.3) 50%,
			rgba(0, 0, 0, 0.3) 75%,
			transparent 75%,
			transparent
		), 
		linear-gradient(
			135deg,
			rgba(0, 0, 0, 0.3) 25%,
			transparent 25%,
			transparent 50%,
			rgba(0, 0, 0, 0.3) 50%,
			rgba(0, 0, 0, 0.3) 75%,
			transparent 75%,
			transparent
		);
	background-size: 4px 4px;
	pointer-events: none;
	z-index: 1;
}
	#logo-wrapper {
		display: flex;
		flex-direction: column;
		z-index: 2;
	}
		#bg {
			background-size: 98% auto;
			background-repeat: no-repeat;
			background-position-x: center;
		}
			#logo {
				display: block;
				position: relative;
				z-index: 2;
				background: url('../images/logo.png');
				width: 98%;
			}

		h2#dj-name {
			color: #b40000;
			display: block;
			font-family: 'New Brilliant', sans-serif;
			font-size: 3em;
			font-variant: normal;
			letter-spacing: 10px;
			margin: 30px auto;
			padding-top: 0;
			text-align: center;
			text-shadow: -1px 0 1px #400000,+1px 0 2px #400000,0 0 5px #C00000;
		}

		#links-wrapper {
			margin: 20px auto;
			text-align: center;
		}
			#links-wrapper img {
				height: 80px;
				margin: 0 5px;
				max-width: 80px;
			}


		#opinion {
			margin: 20px auto 0;
			text-align: center;
			font-size: 18px;
			color: white;
		}

	#content-wrapper {
		display: flex;
		flex-direction: column;
		z-index: 2;
	}

		#content-wrapper div#bg {
			position: relative;
			width: 569px;
			height: 335px;
			margin: 20px auto 0;
			background: url('../images/logo.png');
		}

		.mix-blocks {
			margin: 20px auto 0;
			text-align: left;
			flex-basis: auto;
            flex-grow: 0;
			flex-shrink: 0;
			width: 600px;
		}

		.mix-blocks.sonic-unicorn {
			margin: 40px auto 0;
		}

		.mix-blocks.inspiration-level {
			margin: 20px auto 0;
		}
			.mix-blocks div.mix-block {
				display: flex;
				flex-direction: column;
				margin-bottom: 6px;
			    font-size: 1.2em;
			    color: #aaaaaa;
			}
				.mix-blocks div.mix-block.latest-mix {
				    color: #ffffff;
				}

				.mix-block .mix-name {
				    font-size: 1.2em;
					color: #eaca40;
				}

				.mix-block .brackets {
				    font-size: 1em;
					padding-left: 20px;
				}

				.mix-block .mix-links {
					margin-top: -2px;
					padding-left: 20px;
				    font-size: 1em;
				}
					.mix-links a {
					    font-family: 'Calibri','Verdana',sans-serif;
					    font-size: 1em;
			            font-variant: small-caps;
						text-decoration: none;
					}
						.mix-links a:hover {
							color: #eaeaea;
							text-decoration: underline;
						}

			.mix-blocks details {
				margin-top: 15px;
			}


/*  supporting classes  */

.center {
	margin: 0 auto;
}

.first-line {
	text-indent: 4em;
}

.hidden {
	display: none;
}

.text {
	color: #aaaaaa;
	background-color: inherit;
}

.note {
	color: #800000;
	background-color: inherit;
	font-size: 0.8em;
}

.grey {
	color: #C0C0C0;
}

summary {
	cursor: pointer;
}

@media screen and (max-width: 600px) {
	body {
		font-size: 12px;
		height: inherit;
		margin: 4px;
		overflow: scroll;
	}
		#page-wrapper {
			height: auto;
		}
			h2#dj-name {
				font-size: 2.5em;
				letter-spacing: 10px;
				margin: 30px auto;
				padding-top: 0;
				text-shadow:
					-1px 0 1px #400000,
					+1px 0 1px #400000,
					0 -1px 1px #400000,
					0 +1px 1px #400000,
					   0 0 5px #C00000;
			}
			
	.mix-blocks {
		width: auto;
	}
	
	#links-wrapper img {
		height: 70px;
		max-width: 70px;
	}
}
