:root {
    --background-color: rgb(15, 24, 15);
    --font-color: rgb(161, 161, 161);
    --main-width: 900px;
    font-family: monospace;
    scroll-padding-top: 83px;

}

body {
    scroll-padding-top: 85px;

    margin: 0;
    font-size: x-large;
    background-color: var(--background-color);

}

section {
    position: inherit;
    background-color: rgba(30, 30, 30, 0.80);

    padding-top: 0.5rem;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 0.5rem;

    /* box-shadow: 1rem 1rem 0px rgba(20, 20, 20, 0.95); */
    filter: drop-shadow(1rem 1rem 0px rgba(15, 15, 15, 0.80));
    max-width: var(--main-width);
    margin: 1em auto 2em;
    color: var(--font-color);
}

.dashed,
dashed {
    text-decoration: underline dashed 2px;
}

a,
a:link,
.clickable {
    cursor: pointer;
    color: inherit;
    text-decoration: underline dashed 2px rgb(106, 172, 106);
}

a:hover,
.clickable:hover {
    font-style: italic;
    filter: drop-shadow(0.5px 0.5px 0px green);
    text-decoration-color: rgb(101, 174, 101);
    text-decoration-style: solid;
}

ul {
    list-style-type: "- ";
}

h2,
h3 {
    color: lightgrey;

    >* {
        color: inherit !important;
    }
}



h2::before {
    content: "# ";
    font-weight: 200;
    font-style: italic;
    color: var(--font-color);
}

h3::before {
    content: "$ ";
    font-weight: 200;
    color: var(--font-color);

}


h2:has(a:hover)::after {
    content: " Click to copy hyperlink.";
    font-size: large;
    font-weight: 200;
    font-style: italic;
}

li+li {
    margin-top: 5px;
}

.icons {
    padding-top: 1em;
    padding-bottom: 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


._88x31 {
    background-color: #000;
    width: 88px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    image-rendering: crisp-edges;
}

input[type="checkbox"]:has(~span) {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    z-index: 1000;
    transform: scale(1.5);
}

input[type="checkbox"]~span::before {
    content: "[ ] ";
}

input[type="checkbox"]:checked~span::before {
    content: "[x] ";
}

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

::-webkit-scrollbar-track {
    background-color: rgba(32, 32, 32, 0.80);
}

::-webkit-scrollbar-thumb {
    background: lightgreen;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: green;
}

blockquote {
    margin-left: 0px;
    padding-left: 40px;
    border-radius: 2px;
    border-left: 3px solid var(--font-color);
}