why this site looks like this

jan 5, 2026 // #meta
    +-----------------------+
    |   design language     |
    +-----------------------+
    

this site follows "the archive" design language — brutalist minimalism with a tactile, paper-like feel.

the philosophy:

the palette:

    token      value                      usage
    ─────────────────────────────────────────────────
    paper      #f1e9d2                    page background
    card       rgba(255,255,255,0.4)      card background
    card hover #ffffff                    card on hover
    ink        #333333                    text, borders, shadows
    muted      #555555                    secondary text
    link       #0044cc                    hyperlinks
    

the components:

the rules:

card hover effect:

    .card:hover {
        background: #ffffff;
        box-shadow: 5px 5px 0px #333;
        transform: translate(-1px, -1px);
        transition: all 0.1s;
    }
    
       \  :  /
     '.   :   .'
       > art <
     '.   :   '.
       /  :  \
    

the tech:

file structure:

    zayd.wtf/
    ├── index.html, 404.html
    ├── sitemap.xml, robots.txt, cname
    ├── assets/
    │   ├── css/styles.css
    │   ├── js/scripts.js
    │   └── images/favicon.png
    ├── about/index.html
    ├── blog/
    │   ├── index.html
    │   └── [post]/index.html
    ├── recipes/
    │   ├── index.html
    │   └── [recipe]/index.html
    ├── tools/ (future widgets)
    └── _docs/ (not served)