@font-face {
    font-family: 'Kepler452b';
    src: url('../fonts/Kepler452b-Regular.woff2') format('woff2'),
        url('../fonts/Kepler452b-Regular.woff') format('woff'),
        url('../fonts/Kepler452b-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    background: #FFF;
    color: #000;
    font-family: Courier, monospace;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	margin: 0;
}
body * {
	box-sizing: inherit;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover, a:active, a:focus {
	opacity: 0.8;
    text-decoration: underline;
}
small {
	font-size: .8em;
}
body header, body main, body footer {
    margin: 32px;
}
header img {
	max-width: calc(100% - 64px);
    height: auto;
    max-height: 85px;
}

.menu ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0px;
}
.menu li {
	display: block;
	margin-bottom: 1em;
}
.menu li:last-child {
	margin-bottom: 0;
}
.menu span {
	display: none;
}
@media (min-width: 800px) {
	.menu li {
		display: inline;
		margin-bottom: 0;
	}
	.menu span {
		display: inline;
		padding: 0px 16px;
	}
}
main {
    width: calc(100% - 64px);
}
h1, h2, h3, h4, h5, h6 {
	font-family: Kepler452b;
	font-size: 2.7em;
    font-weight: normal;
}
.aliases {
	margin: 0;
	padding: 0;
	list-style: none;
}
.aliases li {
	margin-bottom: 1em;
	padding: 1em;
}
.aliases li a {
	display: block;
}
.aliases li img {
	max-width: 100%;
    height: auto;
    max-height: 85px;
}
.aliases li img:nth-child(2) {
	max-height: 120px;
}
.imggrid {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    max-width: 100%;
    padding: 0;
    list-style: none;
}
.imggrid li {
    flex-shrink: 0;
    margin: 0 1em 2.5em 0em;
}
figure {
    margin: 0;
}
figure.std {
    max-width: 308px;
    width: 100%;
}
figure.lrg {
    max-width: 800px;
    width: 100%;
}
figure img {
    width: 100%;
}
figure .whitebg, figure .blackbg {
    align-items: center;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    width: 100%;
}
.whitebg {
    background: #FFF;
}
.blackbg {
    background: #000;
}
figcaption > * {
	clear: both;
    float: left;
}
.audiocontainer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.audiocontainer > * {
    display: inline-flex;
}
.audiocontainer > div {
    flex-grow: 1;
}
.audiocontainer > a {
    flex-grow: 0;
}
.audiocontainer audio {
    width: 100%;
}
video {
	aspect-ratio: 16 / 9;
	background: #000;
	max-width: 800px;
	width: 100%;
  
}
.cta {
	background: #000;
	color: #FFF;
	cursor: pointer;
	display: inline-block;
    font-family: Kepler452b;
	font-size: 1.5em;
	padding: 16px;
}
.cta:hover, .cta:active, .cta:focus {
    text-decoration: none;
}
.player {
	box-sizing: border-box;
	width: 100%;
	max-width: 800px;
	background: #000;
	color: #fff;
	padding: 1em;
}
.details, .slider_container, .buttons {
	width: 100%;
	display: flex;
	justify-content: center;
}
.details {
	flex-wrap: wrap;
}
.details * {
	width: 100%;
	text-align: center;
	margin-bottom: 8px;
}
.slider_container * {
	display: inline-block;
}

.seek_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  background: #FFF;
  flex-grow: 1;
  margin: 16px;
}

/* Modify the appearance of the slider thumb */
.seek_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #FFF;
  cursor: pointer;
  border-radius: 50%;
}

.current-time,
.total-duration {
	line-height: 2.4em;
}

.buttons {
	margin-top: 8px;
}
.buttons div {
	margin-right: 24px;
	cursor: pointer;
	font-size: 1.7em;
	line-height: 1.7em;
}
.buttons div * {
	pointer-events: none;
}

.playpause-track {
	line-height: 1.9em!important;
	width: 24px;
	text-align: center;
}

.buttons .single,
.buttons div:last-child {
	margin-right: 0;
}

.next-track, .prev-track {
	font-size: 1.7em;
	line-height: .85em;
}

.disabled {
	opacity: 0.4;
	pointer-events: none;
}

.tracklist {
	list-style: none;
	padding: 0;
	display: flex;
    flex-direction: column;
}
.tracklist li {
	cursor: pointer;
	display: inline-block;
}
.tracklist li * {
	pointer-events: none;
}

.tracklist .highlighted {
	font-weight: bold;
}


.hidden {
	display: none;
}