html,
body {
    --dither-color: rgba(0, 0, 0, 0.05);
    --dither-dot-size: 1px;
    --dither-spacing: 2px;
    --dither-angle: 45deg;

    margin: 40px auto;
    max-width: 650px;
    line-height: 1.4;
    font-size: 18px;
    color: #000;
    padding: 0 10px;
    background-image: linear-gradient(to bottom, white, black),
        repeating-linear-gradient(
            var(--dither-angle),
            var(--dither-color) 0,
            var(--dither-color) var(--dither-dot-size),
            transparent var(--dither-dot-size),
            transparent var(--dither-spacing)
        );
    background-blend-mode: overlay;
    background-attachment: fixed;
}

h1,
h2,
h3 {
    line-height: 0.5;
    font-family: "Jacquard12";
}

h1 {
    font-size: 50pt;
}

h2 {
    font-size: 25pt;
}

a {
    color: #000;
    text-decoration: underline;
}

a:visited {
    color: #333;
}

a:hover {
    color: #2b2a2a;
}

a:active {
    color: #999;
}

#post-list {
    list-style-type: none;
    padding: 0;
}

#post-list li {
    margin-bottom: 10px;
}

#post-list a {
    color: #333;
}

#post-list a:hover {
    color: #666;
    text-decoration: underline;
}

.link-dumpster {
    cursor: pointer;
    color: #000;
    text-decoration: underline;
}

.link-dumpster:hover {
    color: #2b2a2a;
}

/* Gothic Button Styles */
#go-back {
    font-family: "Jacquard12", serif;
    font-size: 20px;
    color: #333;
    background-color: #f0f0f0;
    border: 2px solid #444;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2),
        -3px -3px 6px rgba(255, 255, 255, 0.5);
    outline: none;
    position: relative;
    overflow: hidden;
}

#go-back::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(0, 0, 0, 0.1),
        transparent
    );
    transition: all 0.5s ease;
}

#go-back:hover::before {
    left: 100%;
}

#go-back:hover {
    background-color: #e0e0e0;
    color: #111;
    transform: translateY(-2px);
}

#go-back:active {
    transform: translateY(1px);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2),
        -2px -2px 4px rgba(255, 255, 255, 0.4);
    background-color: #d0d0d0;
}

@font-face {
    font-family: "Jacquard12";
    src: url("../fonts/Jacquard12-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DepartureMono";
    src: url("../fonts/DepartureMono.woff") format("woff");
    font-weight: normal;
}

#clock {
    font-family: "DepartureMono", monospace;
    font-size: 18px;
    color: #f0f0f0;
    letter-spacing: 4px;
    text-align: center;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
}
