/************ Allgemein ************/
:root {
    --font: Verdana, Arial, Helvetica, sans-serif;
    --link-color: whitesmoke;
}

html {
    font-family: var(--font);
}

.container {
  padding: 0 .25em;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/************ Startseite ************/
.list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    margin-top: 0.5em;
}

.list a {
    display: flex;
    text-decoration: none;
    color: unset;
}

.list li {
    margin: .25em 0;
    padding: .25em;
    background: var(--link-color);
}

.list a.has-chords::after {
    margin-left: auto;
    margin-right: 0;
    content: '🎸';
}

.list a.has-error::after {
    margin-left: auto;
    margin-right: 0;
    content: ' 💥💥💥💥💥💥';
}

.list a.has-error::before {
    content: '💥💥💥💥💥💥 ';
    margin-right: auto;
}

/************ Lied ************/

/************ Header ************/
.song .title {   
    font-size: 1.5em;
    margin: .25em 0 0 0;
}

.song .subtitle .metadata {
    font-size: .75em;
    margin: 0;
    margin-bottom: .25em;
}

.song .subtitle .metadata .spacer {
    display: inline-block;
    white-space: pre;
}

.song .subtitle .metadata span:last-child {
    font-weight: bold;
}

.transp a {
    margin-right: 1em;
    text-decoration: none;
    color: unset;
    background: var(--link-color);
}

.transp .lower::after {
    content: ' ⏬';
}

.transp .higher::after {
    content: ' ⏫';
}

/************ Verse ************/
.verse {
    margin-top: 1.5em;
}

.verse .title {
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: bolder;
    margin: 0;
    margin-bottom: 1em;
}

.verse table {
    border-spacing: 0;
    white-space: pre;
    line-height: 1em;
    margin-bottom: .5em;
}

.verse .lyrics {
    font-weight: normal;
}

.verse .chord { 
    font-weight: bolder;
}

.comment-box {
    font-weight: bolder;
    border: .5px dashed black;
}

.comment-normal {
    font-weight: bolder;
}

.comment-normal {
    font-weight: bolder;
    font-style: italic;
}

.song .copyright {
    font-size: .75em;
}
