* {
    box-sizing: border-box;
    font-family: "Courier New", monospace;
  }
  
  body {
    margin: 10px auto;
    background: black;
    color: #663dfc;
    font-family: "Courier New", monospace;
    max-width: 800px;
  }
  
  a {
    color: #663dfc !important;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  input,
  button,
  textarea {
    background: #000000;
    color: white;
    border: 1px solid green;
  }
  
  pre {
    background: #141414;
    border: 1px solid #663dfc;
    border-left: 3px solid #663dfc;
    page-break-inside: avoid;
    font-family: monospace;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1em 1.5em;
    display: block;
    word-wrap: break-word;
}