/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Own styles */
* {
  box-sizing: border-box;
}

body{
  display: flex;
  font-family: monospace;
  font-size: 1rem;
  line-height: 1.5rem;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  border-bottom: 1px dotted;
  color: darkslategrey !important;
}
a:hover, a:focus {
  border-bottom-style: solid;
}

.container {
  width: 75%;
  max-width: 800px;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding: 5vw 0;
}

.container > div {
  padding: 10px 0;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.title hr {
  margin: 0;
}

hr {
  width: 100%;
  margin: 0 10px;
  height: 1px;
  background-color: black;
  border: 0;
  margin: 20px 0;
}

.title h1, .title span {
  flex-shrink: 0;
}

.show {
  display: grid;
  grid-template-columns: 5rem 10rem 14rem auto 4rem;
  width: 100%;
  padding: 5px 0;
}

.artists {
  position: relative;
}

.show .artists::before {
  content: '+';
  right: 100%;
  margin-right: 10px;
  position: absolute;
  width: 10px;
  height: 100%;
  font-size: 0.9rem;
}

.art-credit {
  font-style: italic; 
}

@media all and (max-width: 1000px) {
  .show {
    grid-template-columns: 5rem 10rem auto 4rem;
  }
  .show .artists {
    display: none;
  }
}

@media all and (max-width: 700px) {
  .show {
    grid-template-columns: 5rem auto 4rem;
  }
  .show .venue {
    display: none;
  }
}