@font-face {
    src: url('assets/font/InputMono-Regular.ttf');
    font-family: InputMono;
    font-weight: 700;
}


body {
  color: #000000;
  font-size: 18px;
  height: 98vh;
  width: 98vw;
  cursor: pointer;
}


.body-inverted {
  background-color: black;
}

.mono span {
  width: 10px;
  /*display: inline-block;*/
  font-size: 15px;
  display: none;
}

.body-inverted .mono {
  color: black;
}

#bodyno:not(.body-inverted) .mono pre {
  color: white;
}

.body-inverted .mono span {
  color: hsl(248, 88%, 54%);
  /*display: inline-block;*/
  display: none;
}


.body-inverted .mono i span {
  color: #4931e5;
  text-decoration: none!important;
}

.body-inverted .mono u span {
  color: #b6acf4;
  text-decoration: none!important;
}


.mono, pre {
  font-family: InputMono;
  /*color: white;*/
  overflow-wrap: break-word;
  cursor: pointer!important;
  margin: 0;
  line-height: 1.1;
}


.mono i span, .mono u span {
 text-decoration: underline;
}

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

.box div {
  background: #5222ee;
  height: 200px;
  width: 200px;
}


a {
  color: inherit;
  text-decoration: none;
  /*border-bottom: 1px dashed currentColor;*/
}

.dark {
  position: absolute;
  bottom: 10px;
} 

.dark span{
  color: hsl(248, 88%, 54%);
}

.ltrv {
  display: inline-block!important;
}


.character {
  font-family: InputMono;
  position: absolute;
  font-size: 15px;
  color: hsl(248, 88%, 54%);
  opacity: 1;
  transition: opacity 1s;
  display: none;
}

#midi-block {
  position: absolute;
  right: 10px;
  top: 8px;
  text-align: right;
}

pre.mob {
  display: none;
}

@media only screen and (max-width: 768px) {
  #midi-block {
    display: none;
  }

  pre.desk {
    display: none;
  }

  pre.mob {
    display: block;
  }

  .mono {
    width: 90vw;
  }

}