@import url('https://fonts.googleapis.com/css2?family=Droid+Sans+Mono&display=swap');

body {
    background-color: #000;
    color: #fff;
    font-family: 'Droid Sans Mono', monospace;
    font-size: 10pt;
}

/* Cursor Animation */
.cursor {
    display: inline-block;
    width: 20px;
    background-color: #fff;
    margin-left: 5px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Content Styles */
pre {
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.copyleft {
    display: inline-block;
    transform: rotate(180deg);
}

.title {
    color: #888;
    margin-bottom: 30px;
}

.title_links {

    margin-top: 15px;
}

.tlink {

    text-decoration: none;
    color: #FF7E76;
}

.sec_title {
    color: #999;
    margin-top: 36px;
}

.sec {
    margin-top: 6px;
    margin-left: 22px;
    line-height: 125%;
}

.g {

    color: #B5CC5B;
    font-weight: 600;
    text-decoration: none;
}

.b {

    color: #8BBCFF;
}

.bottom {
    color: #444;
    margin-top: 100px;
}