:root {
  --bg: #000;
  --accent-bg: rgba(0,0,0,0.6);
  --text: #dcdcdc;
  --text-light: #ababab;
  --border: #666;
  --accent: #be270cab;
  --accent-light: #ffecb3;
  --code: #f06292;
  --preformatted: #ccc;
  --disabled: #111;
  --marked: #0a0909;
}


.wrapper {
  display: flex;
  flex-direction: row;
}

.lsidebar {
  width: 50%;
}

.content {
  width:50%;
  overflow:auto;
  margin-left:18px;
}

.audio-playlist {
  padding: 5px;
  font-family: monospace;
  background-color: rgba(0,0,0,0.3)
}



.playlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.playlist li {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.playlist input[type="radio"] {
  display: none;
}

.playlist label {
  flex: 1;
  cursor: pointer;
}

.playlist input[type="radio"]:checked + label {
  font-weight: bold;
}

.playlist audio {
  display: none;
}

.playlist input[type="radio"]:checked ~ audio {
  display: block;
}

@media (min-width: 320px) {
  pre {
    font-size: min(max(1rem, 2vw), 4px);
    }
}

@media (min-width: 576px) {
    pre {
    font-size: min(max(1rem, 2vw), 5px);
    }
  }

@media (min-width: 768px) {
    pre {
    font-size: min(max(1rem, 2vw), 7px);
    }
  }


@media (min-width: 992px) {
    pre {
    font-size: min(max(1rem, 2vw), 10px);
    }
  }

@media (min-width: 1200px) {
  pre {
    font-size: min(max(1rem, 2vw), 12px);
  }
}

.lsidebar {
      background-image: url("https://xkeyscore.neocities.org/NewWeb/Tiles/BF82BB2A-E093-4E8E-89B7-B69B77B1AB40.gif");
    background-repeat: repeat;
}
html,
body {
  background-color: rgba(0,0,0,0.2);
  font-family:monospace;
}

header {
  background-color: rgba(0,0,0,0.8);
}

main {
  background-color: rgba(0,0,0,0.5);
}

body footer {
  background-color: rgba(0,0,0,0.7);
}
h1 {
  text-decoration: underline;
}

li {
  list-style: none;
}

audio {
  background-color: #fff;
  width: 100%;
  height: 1.2em;
}

a button {
  border-radius: 0px;
  margin: 2px;
  padding: 2px;
  background-color: var(--bg);
  color: var(--text-light);
}

mark {
  color: var(--text-light);
}
