body {
  /*font-family: "Lucida Console", "Monaco", monospace;*/
  font-family: "Roboto Mono", monospace;
  line-height: 1.3;
  color: white;
  background-color: #030303;
  font-size: 1em; 
  word-wrap: normal;
  width: 42ch;
  position: static;
  
  margin: auto;
   
    padding-top: 10px;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 20px;
}

.hangingindent {
    padding-left: 1.5ch;
    text-indent: -1.5ch;
}

/* unvisited link */
a:link {
  text-decoration: none;
  color: hotpink;
}

/* visited link */
a:visited {
  text-decoration: none;
  color: hotpink;
}

/* mouse-over link */
a:hover {
  text-decoration: underline;
  color: hotpink;
}

/* selected link */
a:active {
  text-decoration: underline;
  color: hotpink;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}