@font-face {
    font-family: 'Share Tech Mono';
    src: url('share-tech-mono.regular.ttf') format('truetype');
}

tt {
    font-size:14px;
}

body {
    max-width: 650px;
    margin: 60px auto;
    padding: 0 10px;
    font: 18px/1.5 -apple-system, "Share Tech Mono";
    color: #c8c8c8;
    background: #222;
    letter-spacing: 0.1px;
}

p {
    text-align: justify;
}

h1 {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin-top: 50px;
}

li {
    list-style: "> "
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

.section a {
    text-decoration: underline;
}


pre {
    font-family: monospace, "Courier New", Courier;
    font-size: 14px;
    background-color:#1f1f1f;
    overflow: auto;
    display: block;
    padding: 10px;
  }

code {
    font-family: monospace
}

#h2hack h2 {
    display: none;
}
  
.tag {
    margin: 0 10px 0 0;
    color: #c8c8c8;
}

.center {
    display:flex;
    justify-content:center;
    line-height: normal;
}

/* Remove the default scrollbar */
::-webkit-scrollbar {
    width: 3px;  /* Set the width of the scrollbar */
    height: 3px; /* Set the height of the scrollbar for horizontal scrolling */
  }
  
  /* Style the scrollbar track (background of the scrollbar) */
  ::-webkit-scrollbar-track {
    background: #222;
    border-radius: 10px;   /* Optional: adds rounded corners */
  }
  
  /* Style the scrollbar thumb (the draggable part) */
  ::-webkit-scrollbar-thumb {
    background: #c8c8c8;   /* Darker grey for the thumb */
    border-radius: 10px; /* Optional: rounded corners */
    border: 1px solid; /* Optional: adds a small border around the thumb */
  }
  
  /* Hover effect for the thumb */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker shade when hovered */
  }
