body {
    display: table-cell;
    background-color: black !important;
    text-align: left !important;
    padding: 20px 20px 40px 20px;
    overflow: hidden;
  }
  
  .devnull-console-line {
    font-family: monospace;
    line-height: normal;
    color: #afafaf;
    word-break: break-word;
  }
  
  .blink-me {
    animation: blinker 1s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
  
  @media only screen and (max-width: 600px) {
    body {
      background-color: lightblue;
    }
  }
  
  