@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fira+Code:wght@300..700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
    font-family: "Fira Code", monospace;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: monospace;
}

.w3-content {
    max-width: 100%;
    overflow-x: auto;
}

pre {
    font-size: 14px;
    line-height: 1.3;
    white-space: pre-wrap;
    word-break: break-word;
}

a.cve,
a.poc {
    color: #ff0;
    text-shadow: 0 0 10px #ff0, 0 0 5px #ff0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.desc {
    color: #fff;
    text-shadow: 0 0 2px #fff, 0 0 4px #fff;
}

.cve-id,
.cve-desc {
    color: #fff;
    text-shadow: 0 0 2px #ddd, 0 0 4px #ddd;
    text-transform: uppercase;
}

.cve-wmsg {
    font-size: 16px;;
}

@media (max-width: 800px) {
    pre {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    pre {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    pre {
        font-size: 8px;
    }
}