html {
        font-size: 14px;
        scrollbar-color: #000 #000;
}

* {
        box-sizing: border-box;
        text-rendering: geometricPrecision;
        text-align: left;

}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #000;
}

::-webkit-scrollbar-thumb:hover {
  background: #000;
}

body {
        font-size: 1rem;
        line-height: 1.5rem;
        margin: 0;
        font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
        word-wrap: break-word;
        background-color: #000;
        color: #fff;
        margin: 0 auto;
        padding: 0 1rem;
        max-width: 70rem;
}

main {
        background-color: #000;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
}

aside {
        background-color: #000;
}

::selection {
        background: #00ff00;
        color: #000;
}

a {
        cursor: pointer;
        color: #00ff00;
        text-decoration: none;
}

a:hover {
        background-color: #00ff00;
        color: #000;
}

.hack h1 {
        position: relative;
        display: block;
        padding: 20px 0 30px;
        margin: 0;
        overflow: hidden;
        color: #FFF;
}

.hack h1:after {
        content: "====================================================================================================";
        position: absolute;
        bottom: 10px;
        left: 0;
        color: #FFF;
}

.hack h1 + * {
        margin-top: 0;
}

.hack h2,
.hack h3,
.hack h4,
.hack h5,
.hack h6 {
        position: relative;
        margin-bottom: 1.75rem;
        color: #FFF;
        text-decoration: underline;
        text-decoration-color: #00ff00;
}

.hack h2:before,
.hack h3:before,
.hack h4:before,
.hack h5:before,
.hack h6:before {
        display: inline;
        color: #FFF;
}

.hack h2:before {
        content: "## ";
}

.hack h3:before {
        content: "### ";
}

.hack h4:before {
        content: "#### ";
}

.hack h5:before {
        content: "##### ";
}

.hack h6:before {
        content: "###### ";
}

.table {
        display: flex;
        flex-wrap: wrap;
}

.table aside {
        flex: 0 0 20%;
        box-sizing: border-box;
}

.table main {
        flex: 0 0 80%;
        box-sizing: border-box;
}

.hack ul > li::after {
        content: "+";
        color: #ff0080;
}

.hack li::after {
    position: absolute;
    top: 0;
    left: 0;
}

.hack li {
    position: relative;
    display: block;
    padding-left: 20px;
}

.hack code {
        display: inline-block;
        background-color: #332233;
}

.hack code::before {
        content: "`";
}

.hack code::after {
        content: "`";
}

.block_code {
	padding: .5em;
        display: block;
        background-color: #332233;
	width: 58.2%;
	margin: auto;
}

.block_code::before {
	content: "```"
}

.block_code::after {
	content: "```"
}

.no-tick::before {
	content: "" !important
}

.no-tick::after {
	content: "" !important
}

a.clickable-div {
    display: block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: white;
}
a.clickable-div:hover {
        background-color: #000000;
        color: #FFF;
}

