body {
    background-image: url('https://w.wallhaven.cc/full/vg/wallhaven-vg52ql.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    color: #e6e6e6;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 15, 15, 0.40);
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.35) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 2;
}

.article-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 70px;
    background-color: #2a1f1f;
    border: 1px solid #ff3333;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

header {
    font-family: 'VT323', monospace;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 4;
    text-align: center;
    padding: 20px;
    background: #111;
    color: #fff;
    font-size: 2em;
    border-bottom: 2px solid #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

/* Makes text glitch in and out with offset colors */
header.glitch {
    position: relative;
    color: transparent;
}

h1, h2, h3 {
    color: #ff4d4d;
    border-bottom: 1px solid #ff3333;
    padding-bottom: 5px;
}

strong {
    color: #ff6666;
}

pre {
    background-color: #331f1f;
    padding: 15px;
    border-left: 3px solid #ff3333;
    overflow-x: auto;
}

code {
    color: #ff9999;
}

img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ff3333;
}

a {
    color: #ff6666;
    text-decoration: none;
}

a:hover {
    color: #ff9999;
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #ff0000;
    border-top: 2px solid #ff0000;
}