@font-face {
    font-family: SF Mono;
    src: url(https://fanroad.neocities.org/fonts/SF-Mono-Regular.otf);
}

body {
  background: url(https://fanroad.neocities.org/lisbeth/double-bubble-dark.webp);
  font-size:12px;
  color:#69f639;
}

.terminal {
  backdrop-filter: blur(5px);
  padding:15px;
  border-radius:10px;
  border:1px solid grey;
  font-family:SF Mono;
  height:auto;
}

.container {
  overflow: hidden;
}

.filterDiv {
  float: left;
  color: #69f639;
  width: 200px;
  text-align: left;
  margin: 2px;
  padding:10px;
  border:1px solid black;
  background: rgba(0,0,0,0.8);
  border-radius:5px;
  display: none; /* Hidden by default */
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  font-family:SF Mono;
  border: none;
  outline: none;
  background-color:black;
  color:white;
  cursor: pointer;
  margin-bottom:5px;
  border-bottom:1px solid #69f639;
}

/* Add a light grey background on mouse-over */
.btn:hover {
  color: #69f639;
}

/* Add a dark background to the active button */
.btn.active {
  background-color: #69f639;
  color: black;
}