* {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
  }
  
  body {
    background-color: #0D1C69;
    background-image: linear-gradient(145deg,rgba(8, 10, 64, 1) 0%, rgba(13, 28, 105, 1) 10%, rgba(63, 22, 140, 1) 50%, rgba(172, 131, 222, 1) 110%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: monospace;
  }

  ::selection {
    background-color: rgba(8, 10, 64, 0.6);
    color: rgba(195, 165, 240, 1);
  }

  img {
    max-width: 100%;
  }
  
  .bg {
    position: fixed;
    inset: 0;
    z-index: 1;
  }
  
  .bg > svg {
    width: 100%;
    height: 100%;
    opacity: 0.2;
    mix-blend-mode: multiply;
  }
  
  .wrapper {
    position: relative;
    z-index: 2;
    padding: 3rem 1rem;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .content {
    width: 100%;
    max-width: 800px;
    border-radius: 5px;
    border: 1px outset rgba(172, 131, 222, 0.4);
    box-shadow: 0 0 2px 2px rgba(8, 10, 64, 0.2);
    background-color: rgba(8, 10, 64, 0.5);
    color: rgba(195, 165, 240, 1);
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .content a {
    color: rgba(195, 165, 240, 1);
    text-decoration-style: dotted;
    text-underline-offset: 3px;
  }
  
  .content a:hover,
  .content a:focus {
    text-shadow: 0 0 3px rgba(197, 170, 245, 0.7);
  }
  
  .content hr {
    border: 0;
    border-top: 1px solid rgba(172, 131, 222, 0.4);
    margin: 1.5rem auto;
    max-width: 500px;
  }

  .content ul {
    list-style-position: inside;
    margin: 0;
    padding: 0;
  }
  
  .content h1,
  .content p,
  .content ul li {
    margin: 0;
    margin-bottom: 1rem;
  }
  
  .content p:last-of-type {
     margin-bottom: 0;
  }

  p.listing a {
    text-decoration: none;
  }

  pre {
    white-space: pre-wrap;
  }

  pre.code {
    max-width: 100%;
    text-align: left;
    background-color: rgba(197, 170, 245, 1);
    color: rgba(8, 10, 64, 1);
    padding: 1rem;
    border: 1px solid;
  }
  