@font-face {
    font-family: "Inconsolata";
    src: url("/fonts/Inconsolata-Regular.ttf");
}

:root {
	--cl-background: black;
	--cl-text: white;
	--cl-primary: white;
	--cl-secondary: black;
	--cl-accent: white;

	--fs-0: clamp(1.06rem, calc(1.02rem + 0.22vw), 1.19rem);
	--fs-1: clamp(1.33rem, calc(1.24rem + 0.44vw), 1.58rem);
	--fs-2: clamp(1.66rem, calc(1.50rem + 0.78vw), 2.11rem);
	--fs-3: clamp(2.08rem, calc(1.82rem + 1.28vw), 2.81rem);
	--fs-4: clamp(2.59rem, calc(2.19rem + 2.01vw), 3.75rem);
	--fs-5: clamp(3.24rem, calc(2.63rem + 3.05vw), 5.00rem);

	--fs-0: 1rem;
	--fs-1: 1.5rem;
	--fs-2: 2rem;
	--fs-3: 2.5rem;
	--fs-4: 3rem;
	--fs-5: 3.5rem;
} 

* {
	margin:0;
}

body {
	color: var(--cl-text);
	background-color: var(--cl-background);
	background-size: 600px;
 	font-family: "Inconsolata";
	font-size: var(--fs-0);
	line-height: 1.3;
	margin-bottom: 5rem;
}

h1 { font-size:var(--fs-5); }
h2 { font-size:var(--fs-2); }
h3 { font-size:var(--fs-1); }
.navbar { font-size:1.2rem; }


h1, h2, h3 {
	color: var(--cl-accent);
	line-height: 1.1;
	text-wrap: balance;

}

h2 {  }

a {
	color: red;
	text-decoration: none;
}

a:hover {
	color: var(--cl-accent);
}

ul p {
	font-weight: bold;
	margin-left: -40px;
}

ul h3 {
	font-weight: bold;
	margin-left: -40px;
}

ul * + p {
	margin-top: 0.5rem;
}

ul {
	list-style-type:"+ ";
}

ul .date {
	list-style-type:"# " ;
}

ul .time {
	list-style-type:"/ " ;
}

ul .location {
	list-style-type:"@ ";
}

.banner {
	margin: 0 auto;
	background-image: url("/img/banner-black.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-style: none;
	height: 70px;
}

.blink_me {
  animation: blinker 0.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.boxed {
	padding: 1rem;
	background-color: var(--cl-secondary);
}

.info ul  {
	padding-left: 1rem;
}


section {
	margin-top: 2rem;
	width: min(100% - 4rem, 65ch);
	margin-inline: auto;
	padding: 1rem;
	border-style:solid;
	border-width: 1px;
}

section > * + * {
	margin-block-start: 0.5em;
}

img {
	max-width: 100%;
	display: block;
}

audio {
	height: 30px;
	border: none;
	width: 100%;
}

audio:focus {
	outline: none;
}

span {
	float: right;
}

.license {
	display: block;
}

.arrows {
	padding: 1rem;
	font-size: var(--fs-2);
}

/* Chrome 29+ */
@media screen and (-webkit-min-device-pixel-ratio:0)
and (min-resolution:.001dpcm) {
	audio {
		background-color: #f1f3f4;
		height: 30px;
	}
}

.date_title, .post time  {
	font-weight: bold;
}

/*---- NAVBAR ----*/

.navbar {
	text-align: center;
	margin: 0 auto;
	margin-bottom: 1rem;
	padding: 1rem 0.3rem;
	background-image: url("/img/banner.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 100px;
}

.navbar li {
	color: var(--nav);
	margin: 0.3rem 0.5rem;
	display: inline-block;
}

#active { font-weight: bold; }

/*----- DISCOGRAPHY -----*/

.simple-grid {
  --columns: 2;
	gap: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
}

@media (min-width: 600px) {
  .simple-grid {
    --columns: 3;
  }
}

/*---- release-page ----*/

.release-page {
	width: min(100% - 2rem);
	max-width: 1000px;
}

.release-page_grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	column-gap: 2rem;
}

.release-page img {
	margin-bottom: 1rem;
}

.release-page iframe {
	border: 0; 
	width: 100%; 
	height: 400px; 
	display: block; 
}

.release-page_info > * {
	margin-bottom: 1rem;
}

/*----- ARCHIVE-FILE------*/

.archive-file img {
	max-height: 50vh;
	width: auto;
}

.shasum {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.archive-file_download > * + * {
	margin-top: 0.5rem;
}
