    @font-face {
      font-family: "opensans";
      src: 
      url("/font/sans.ttf") format('truetype'),
      url("/font/sans.woff2") format('woff2');
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: opensans;
    }
    
    body {
      transition: all 0.2s;
      height: 100vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #ededed;
      color: #1c2127;
    }
    
    .dark {
      background-color: #1c2127;
      color: #ededed;
    }
    
    #outer-container {
      width: max-content;
      height: max-content;
    }
    
    #generateButton {
      display: flex;
      justify-content: center;
      margin: auto;
    }
    
    #output {
      width: 200px;
      overflow: auto;
      text-align: center;
      margin: auto;
      padding: 0.5em;
    }
    
    #copyButton {
      display: none;
      justify-content: center;
      margin: auto;
      opacity: 0;
    }
    
    #copyButton.show {
      display: flex;
      opacity: 1;
    }
    
    h1 {
      text-align: center;
      margin: auto;
      margin-bottom: 0.4em;
    }
    
    h4 {
      text-align: center;
      margin: auto;
      margin-bottom: 1em;
    }
    
    #theme {
      height: 2em;
      width: 2em;
      background: transparent;
      border: none; 
    }
    
    .wrap {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }
    
    .wrap2 {
      transition: 0.2s;
      display: flex;
      flex-direction: column;
      width: 250px;
      background: white;
      padding: 1.5em;
      border-radius: 15px;
      box-shadow: 0 5px 5px 2px rgba(0, 0, 0, 0.05);
    }
    
    body.dark .wrap2 {
      background: #252c34;
      box-shadow: 0 5px 5px 2px rgba(0, 0, 0, 0.15);
    }
    
    body path {
      stroke: #1c2127;
    }
    
    body.dark path {
      stroke: #ededed;
    }
    
    @media only screen and (min-width: 300px) {
      .wrap2 { width: 300px; }
      #output { width: 250px; }
    }
    
    @media only screen and (min-width: 600px) {
      .wrap2 { width: 350px; }
      #output { width: 300px; }
    }
    
    @media only screen and (min-width: 768px) {
      .wrap2 { width: 400px; }
      #output { width: 350px; }
    }
    
    @media only screen and (min-width: 992px) {
      .wrap2 { width: 500px; }
      #output { width: 450px; }
    }
    
    button:not(#theme) {
      transition: 0.2s;
      width: 80%;
      height: 30px;
      line-height: 28px;
      font-size: 1.1em;
      font-weight: 700;
      background-color: #ededed;
      border: none;
      box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.15);
      border-radius: 25px;
    }
    
    body.dark button:not(#theme) {
      box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.3);
      background: #1c2127;
      color: #ededed;
    }
    
    body.dark button:not(#theme):hover {
      background: #171b20;
    }
    
    button:not(#theme):hover {
      background: #e1e1e1;
    }
    
    button:hover {
      transition: all 0.2s;
    }