body{
    font-family: monospace;
    font-size: 18px;
    line-height: 1.6;
    height:100%;
    background-color: #000;
        color: #00ff00;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
}
body::-webkit-scrollbar {
    width: 0.4rem; /* Adjust as needed */
}

body::-webkit-scrollbar-thumb {
    background-color: transparent; /* Hide thumb */
}
a{
 color:#10ba04;
    text-decoration: none;
}
a:hover{
    cursor: pointer;
    text-decoration: underline;
}
p{
    margin-left: 20px;
}
ul.custom-list {
  list-style-type: none;
  padding-left: 0;
    margin-left: 25px;
}
ul.custom-list li::before {
  content: "+";
  margin-right: 5px; /* Add spacing between the plus sign and the list item text */

}