@font-face {
  font-family: 'IBMVGA9x16';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Web437_IBM_VGA_9x16.woff") format('woff');
  /* unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; */
}

body {
  background-color: #000500;
  font-family: 'IBMVGA9x16', 'Courier New', Courier, monospace;
  font-size: 18px;

  color: #FFFBFF;

  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  max-width: 1280px;
  width: 100%;
}

@media (max-width: 1280px) {
  header {
    margin-top: -18px;
  }
}

@media (max-width: 980px) {
  header {
    flex-direction: column;
  }
}

#link-box {
  margin: 36px 18px;
  text-align: center;
}


main {
  color: #FFFBFF;

  max-width: 1280px;
  width: 100%;
}

h1 {
  font-family: "IBMVGA9x16", 'Courier New', Courier, monospace;
  /* margin: 18px; */
  padding: 18px;
  /* background-color: #a00; */
  background-color: rgb(0,129,6);
  color: #FFFBFF;
  font-size: 48px;
  line-height: 48px;
}

/* color: rgb(255, 176, 0); */
h3 {
  font-family: "IBMVGA9x16", 'Courier New', Courier, monospace;
  color: rgb(0,180,51);
  border-bottom: 1px solid rgb(0,180,51);
  margin-top: 0;

  font-size: 20px;
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }
}

img#artist-title {
  color: #FFFBFF;
}

a {
  color: #FFFBFF;
}

.box {
  padding: 18px;
  background-color: #292929;
  text-align: left;

  margin-bottom: 18px;
}

.container {
  padding: 0 18px;
}

.video-container {
  margin-bottom: 18px;
  padding: 0;

  filter: hue-rotate(74deg) saturate(125%) brightness(120%);
}

.video-container video {
  max-width: 1280px;
  width: 100%;
  height: auto;

  margin: 0;
  padding: 0;

  display: block;
}

.content-image {
  width: 100%;
  height: auto;

  margin-bottom: 18px;

  display: block;
}

/* .cassette-playlist {
  display: flex;

  flex-direction: column;
} */

.cassette-playlist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.song {
  display: flex;
  /* flex-wrap: wrap;  */
  /* padding: 1rem; */
  padding-bottom: 18px;

  cursor: pointer;
}

.instruments .song {
  cursor: auto;
}

.song .playit {
  color: rgb(0,180,51);
  display: block;
  font-size: 14px;

  visibility: hidden;
}

.song:hover .playit {
  visibility: visible;
}

.song-title {
  flex: 1 1 200px;
  font-weight: bold;
  padding-right: 18px;
}

.playing {
  color: #0f0;
  display: inline;
  font-size: 14px;
  padding-left: 14px;

  visibility: hidden;
}

.year {
  display: block;
  font-size: 14px;
  color: #aaa;
}

.song-info {
  flex: 3 1 400px; 
  color: #aaa;
}

.song-image {
  padding-left: 18px;
}

.song-image img {
  width: 100%;
  max-width: 320px;
  height: auto;

  filter: hue-rotate(69deg) saturate(70%) brightness(90%);
}

.copyright {
  margin-bottom: 18px;
}

.impress {
  font-size: 14px;

  margin-bottom: 14px;
}

.grey {
  color: #aaa;
}

.haustuer {
  filter: hue-rotate(20deg) brightness(95%);
}

.garten {
  filter: hue-rotate(20deg) brightness(90%);
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@media (max-width: 700px) {
  .song {
    flex-direction: column;
  }
  .song-title {
    flex: 1 1 0px;
    margin-bottom: 0.25rem;
  }

  .song-image {
    padding: 18px 0px;
  }

  .song-info {
    flex: 3 1 0px; 
  }

  .instruments .song-title {
    margin-bottom: 12px;
  }
  
}

