Initial commit — Singular Particular Space v1
Homepage (site/index.html): integration-v14 promoted, Writings section integrated with 33 pieces clustered by type (stories/essays/miscellany), Writings welcome lightbox, content frame at 98% opacity. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,566 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Angelic Anarchist Style Reference | Divine Rebellion</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Orbitron:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
/* ============================================
|
||||
ANGELIC ANARCHIST STYLE REFERENCE
|
||||
Divine Rebellion | Sacred Chaos | Heavenly Punk
|
||||
UNIQUE FEATURE: Animated Rotating Halos on Headings
|
||||
============================================ */
|
||||
|
||||
/* ===== 1. CSS RESET ===== */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* ===== 2. CSS VARIABLES ===== */
|
||||
:root {
|
||||
/* --- BACKGROUND GRADIENT ---
|
||||
Heaven to earth - divine descent */
|
||||
--bg-gradient-1: #0a0a0f; /* Void black */
|
||||
--bg-gradient-2: #15151f; /* Dark sanctum */
|
||||
--bg-gradient-3: #1a1a2a; /* Twilight altar */
|
||||
--bg-gradient-4: #1f1f35; /* Sacred shadow */
|
||||
|
||||
/* --- SURFACE BACKGROUNDS --- */
|
||||
--bg-elevated: rgba(255,250,240,0.04);
|
||||
--bg-card: rgba(255,250,240,0.08);
|
||||
--bg-darker: rgba(0,0,0,0.40);
|
||||
--bg-solid-dark: #0a0a0f;
|
||||
--bg-solid-light: #f5f0e8;
|
||||
|
||||
/* --- BORDERS ---
|
||||
Sharp angles, no mercy */
|
||||
--border-color: #d4af37;
|
||||
--border-width: 2px;
|
||||
--border-width-thick: 4px;
|
||||
|
||||
/* --- GLOW SYSTEM ---
|
||||
Divine: Sacred gold, holy white
|
||||
Chaos: Anarchist red, rebellion purple
|
||||
Void: Deep shadow, cosmic black */
|
||||
--divine-1: #ffd700; /* Pure gold */
|
||||
--divine-2: #f0e68c; /* Pale gold */
|
||||
--divine-3: #ffffff; /* Holy white */
|
||||
--chaos-1: #dc143c; /* Crimson rebellion */
|
||||
--chaos-2: #8b008b; /* Dark magenta */
|
||||
--chaos-3: #ff1493; /* Deep pink */
|
||||
--void-1: #4b0082; /* Indigo void */
|
||||
--void-2: #2e0854; /* Deep purple */
|
||||
|
||||
/* --- TYPOGRAPHY COLORS --- */
|
||||
--text-primary: #f5f0e8;
|
||||
--text-white: #ffffff;
|
||||
--text-h1-gradient: linear-gradient(135deg, #ffd700 0%, #ffffff 25%, #dc143c 50%, #8b008b 75%, #ffd700 100%);
|
||||
--text-h2: #ffd700; /* Divine gold */
|
||||
--text-h3: #dc143c; /* Chaos red */
|
||||
--text-h4: #8b008b; /* Rebellion purple */
|
||||
--text-h5: #f0e68c; /* Pale gold */
|
||||
--text-h6: #f5f0e8; /* Primary */
|
||||
|
||||
/* --- BUTTON GRADIENTS --- */
|
||||
--btn-divine-gradient: linear-gradient(45deg, #ffd700 0%, #ffffff 50%, #f0e68c 100%);
|
||||
--btn-chaos-gradient: linear-gradient(45deg, #dc143c 0%, #ff1493 50%, #8b008b 100%);
|
||||
--btn-void-gradient: linear-gradient(45deg, #4b0082 0%, #8b008b 50%, #2e0854 100%);
|
||||
|
||||
/* --- FONTS --- */
|
||||
--font-header: 'Cinzel', serif;
|
||||
--font-body: 'Orbitron', sans-serif;
|
||||
--font-mono: 'JetBrains Mono', monospace;
|
||||
}
|
||||
|
||||
/* ===== 3. BASE STYLES ===== */
|
||||
body {
|
||||
font-family: var(--font-body);
|
||||
background: linear-gradient(135deg,
|
||||
var(--bg-gradient-1) 0%,
|
||||
var(--bg-gradient-2) 33%,
|
||||
var(--bg-gradient-3) 66%,
|
||||
var(--bg-gradient-4) 100%);
|
||||
background-attachment: fixed;
|
||||
color: var(--text-primary);
|
||||
line-height: 1.6;
|
||||
min-height: 100vh;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
/* ===== 4. LAYOUT ===== */
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
gap: 1.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
|
||||
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
|
||||
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
|
||||
|
||||
/* ===== 5. TYPOGRAPHY ===== */
|
||||
|
||||
/* UNIQUE FEATURE: Animated Rotating Halos */
|
||||
@keyframes halo-rotate {
|
||||
0% { transform: rotate(0deg) scale(1); opacity: 0.6; }
|
||||
50% { transform: rotate(180deg) scale(1.1); opacity: 0.8; }
|
||||
100% { transform: rotate(360deg) scale(1); opacity: 0.6; }
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
h1::before,
|
||||
h2::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: 120%;
|
||||
height: 120%;
|
||||
border: 3px solid transparent;
|
||||
border-top-color: var(--divine-1);
|
||||
border-right-color: var(--chaos-1);
|
||||
border-bottom-color: var(--void-1);
|
||||
border-left-color: var(--divine-3);
|
||||
animation: halo-rotate 8s linear infinite;
|
||||
pointer-events: none;
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: clamp(2rem, 5vw, 3rem);
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
background: var(--text-h1-gradient);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
font-family: var(--font-header);
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: clamp(1.5rem, 4vw, 2rem);
|
||||
font-weight: 700;
|
||||
color: var(--text-h2);
|
||||
margin-bottom: 1rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
font-family: var(--font-header);
|
||||
text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
|
||||
padding: 0.75rem 0;
|
||||
}
|
||||
|
||||
h2::before {
|
||||
border-width: 2px;
|
||||
animation-duration: 6s;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: clamp(1.25rem, 3vw, 1.5rem);
|
||||
font-weight: 600;
|
||||
color: var(--text-h3);
|
||||
margin-bottom: 0.75rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.03em;
|
||||
font-family: var(--font-header);
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: clamp(1.1rem, 2.5vw, 1.25rem);
|
||||
font-weight: 600;
|
||||
color: var(--text-h4);
|
||||
margin-bottom: 0.75rem;
|
||||
font-family: var(--font-header);
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.1rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-h5);
|
||||
margin-bottom: 0.5rem;
|
||||
font-family: var(--font-header);
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-h6);
|
||||
margin-bottom: 0.5rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
font-family: var(--font-header);
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 1rem;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
strong {
|
||||
color: var(--divine-1);
|
||||
font-weight: 600;
|
||||
text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
|
||||
}
|
||||
|
||||
em {
|
||||
color: var(--chaos-1);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: var(--font-mono);
|
||||
background: var(--bg-elevated);
|
||||
padding: 0.2rem 0.4rem;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 0;
|
||||
font-size: 0.9em;
|
||||
color: var(--divine-2);
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: var(--font-mono);
|
||||
background: var(--bg-elevated);
|
||||
padding: 1rem;
|
||||
border: var(--border-width) solid var(--border-color);
|
||||
border-radius: 0;
|
||||
overflow-x: auto;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
pre code {
|
||||
background: transparent;
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* ===== BUTTONS ===== */
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 0.875rem 2rem;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
transition: transform 0.3s, box-shadow 0.3s;
|
||||
cursor: pointer;
|
||||
border: var(--border-width) solid var(--border-color);
|
||||
font-family: var(--font-body);
|
||||
border-radius: 0;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.btn-divine {
|
||||
background: var(--btn-divine-gradient);
|
||||
color: #000;
|
||||
box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.btn-divine:hover {
|
||||
transform: scale(1.04);
|
||||
box-shadow: 0 0 30px rgba(255, 215, 0, 0.7), 0 0 60px rgba(255, 215, 0, 0.4);
|
||||
}
|
||||
|
||||
.btn-chaos {
|
||||
background: var(--btn-chaos-gradient);
|
||||
color: white;
|
||||
box-shadow: 0 0 20px rgba(220, 20, 60, 0.5), 0 0 40px rgba(220, 20, 60, 0.3);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.btn-chaos:hover {
|
||||
transform: scale(1.04);
|
||||
box-shadow: 0 0 30px rgba(220, 20, 60, 0.7), 0 0 60px rgba(220, 20, 60, 0.4);
|
||||
}
|
||||
|
||||
.btn-void {
|
||||
background: var(--btn-void-gradient);
|
||||
color: white;
|
||||
box-shadow: 0 0 20px rgba(75, 0, 130, 0.5), 0 0 40px rgba(75, 0, 130, 0.3);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.btn-void:hover {
|
||||
transform: scale(1.04);
|
||||
box-shadow: 0 0 30px rgba(75, 0, 130, 0.7), 0 0 60px rgba(75, 0, 130, 0.4);
|
||||
}
|
||||
|
||||
/* ===== CARDS & PANELS ===== */
|
||||
.card {
|
||||
background: var(--bg-card);
|
||||
backdrop-filter: blur(10px);
|
||||
border: var(--border-width) solid var(--border-color);
|
||||
border-radius: 0;
|
||||
padding: 1.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.card-elevated {
|
||||
background: var(--bg-elevated);
|
||||
backdrop-filter: blur(10px);
|
||||
border: var(--border-width) solid var(--border-color);
|
||||
border-radius: 0;
|
||||
padding: 1.5rem;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.card-glow-divine {
|
||||
box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.3);
|
||||
}
|
||||
|
||||
.card-glow-chaos {
|
||||
box-shadow: 0 0 30px rgba(220, 20, 60, 0.5), 0 0 60px rgba(220, 20, 60, 0.3);
|
||||
}
|
||||
|
||||
.card-glow-void {
|
||||
box-shadow: 0 0 30px rgba(75, 0, 130, 0.5), 0 0 60px rgba(75, 0, 130, 0.3);
|
||||
}
|
||||
|
||||
.card-sanctum {
|
||||
background: rgba(255, 250, 240, 0.95);
|
||||
border: var(--border-width-thick) solid var(--divine-1);
|
||||
color: #1a1a2a;
|
||||
padding: 2rem;
|
||||
margin-bottom: 1.5rem;
|
||||
box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
|
||||
}
|
||||
|
||||
.card-sanctum h1,
|
||||
.card-sanctum h2,
|
||||
.card-sanctum h3,
|
||||
.card-sanctum h4,
|
||||
.card-sanctum h5,
|
||||
.card-sanctum h6 {
|
||||
color: #8b008b;
|
||||
background: none;
|
||||
-webkit-text-fill-color: #8b008b;
|
||||
}
|
||||
|
||||
.card-sanctum p,
|
||||
.card-sanctum li {
|
||||
color: #1a1a2a;
|
||||
}
|
||||
|
||||
.card-sanctum strong {
|
||||
color: #dc143c;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
/* ===== BADGES ===== */
|
||||
.badge {
|
||||
display: inline-block;
|
||||
padding: 0.375rem 0.875rem;
|
||||
border-radius: 0;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
border: var(--border-width) solid;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.badge-divine {
|
||||
background: var(--bg-elevated);
|
||||
color: var(--divine-1);
|
||||
border-color: var(--divine-1);
|
||||
box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
|
||||
}
|
||||
|
||||
.badge-chaos {
|
||||
background: var(--bg-elevated);
|
||||
color: var(--chaos-1);
|
||||
border-color: var(--chaos-1);
|
||||
box-shadow: 0 0 15px rgba(220, 20, 60, 0.3);
|
||||
}
|
||||
|
||||
.badge-void {
|
||||
background: var(--bg-elevated);
|
||||
color: var(--void-1);
|
||||
border-color: var(--void-1);
|
||||
box-shadow: 0 0 15px rgba(75, 0, 130, 0.3);
|
||||
}
|
||||
|
||||
/* ===== ALERTS ===== */
|
||||
.alert {
|
||||
padding: 1rem 1.5rem;
|
||||
border-radius: 0;
|
||||
border: var(--border-width) solid;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.alert-divine {
|
||||
background: rgba(255, 215, 0, 0.1);
|
||||
border-color: var(--divine-1);
|
||||
color: var(--text-primary);
|
||||
box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
|
||||
}
|
||||
|
||||
.alert-chaos {
|
||||
background: rgba(220, 20, 60, 0.1);
|
||||
border-color: var(--chaos-1);
|
||||
color: var(--text-primary);
|
||||
box-shadow: 0 0 20px rgba(220, 20, 60, 0.2);
|
||||
}
|
||||
|
||||
.alert-void {
|
||||
background: rgba(75, 0, 130, 0.1);
|
||||
border-color: var(--void-1);
|
||||
color: var(--text-primary);
|
||||
box-shadow: 0 0 20px rgba(75, 0, 130, 0.2);
|
||||
}
|
||||
|
||||
/* ===== UTILITY CLASSES ===== */
|
||||
.text-center { text-align: center; }
|
||||
.mt-2 { margin-top: 1rem; }
|
||||
.mb-3 { margin-bottom: 1.5rem; }
|
||||
|
||||
/* ===== HORIZONTAL RULE ===== */
|
||||
hr {
|
||||
border: none;
|
||||
height: var(--border-width);
|
||||
background: linear-gradient(to right,
|
||||
var(--divine-1),
|
||||
var(--chaos-1),
|
||||
var(--void-1),
|
||||
var(--divine-1));
|
||||
margin: 2.5rem 0;
|
||||
box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<!-- HEADER -->
|
||||
<header class="text-center mb-3">
|
||||
<h1>Angelic Anarchist</h1>
|
||||
<p style="font-size: 1.25rem; color: var(--divine-2);">Divine Rebellion | Sacred Chaos | Heavenly Punk</p>
|
||||
</header>
|
||||
|
||||
<hr>
|
||||
|
||||
<!-- UNIQUE FEATURE SHOWCASE -->
|
||||
<section class="mb-3">
|
||||
<div class="card-sanctum">
|
||||
<h2>✨ Unique Feature: Animated Halos</h2>
|
||||
<p>This design system features <strong>CSS-only animated rotating halos</strong> on H1 and H2 headings. The halos are created using pseudo-elements with rotating borders in divine gold, chaos crimson, void indigo, and holy white.</p>
|
||||
<p>Watch the halos rotate continuously around major headings—a visual representation of the tension between <em>divine order and anarchist rebellion</em>.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- COLOR PALETTE -->
|
||||
<section class="mb-3">
|
||||
<h2>Sacred Spectrum</h2>
|
||||
<div class="grid grid-3">
|
||||
<div class="card" style="background: var(--divine-1); color: #000;">
|
||||
<h4 style="color: #000;">Divine Gold</h4>
|
||||
<code style="background: rgba(0,0,0,0.2); color: #000; border-color: #000;">#ffd700</code>
|
||||
</div>
|
||||
<div class="card" style="background: var(--divine-3); color: #000;">
|
||||
<h4 style="color: #000;">Holy White</h4>
|
||||
<code style="background: rgba(0,0,0,0.2); color: #000; border-color: #000;">#ffffff</code>
|
||||
</div>
|
||||
<div class="card" style="background: var(--chaos-1); color: white;">
|
||||
<h4 style="color: white;">Crimson Rebellion</h4>
|
||||
<code style="background: rgba(255,255,255,0.2); color: white; border-color: white;">#dc143c</code>
|
||||
</div>
|
||||
<div class="card" style="background: var(--chaos-2); color: white;">
|
||||
<h4 style="color: white;">Dark Magenta</h4>
|
||||
<code style="background: rgba(255,255,255,0.2); color: white; border-color: white;">#8b008b</code>
|
||||
</div>
|
||||
<div class="card" style="background: var(--void-1); color: white;">
|
||||
<h4 style="color: white;">Indigo Void</h4>
|
||||
<code style="background: rgba(255,255,255,0.2); color: white; border-color: white;">#4b0082</code>
|
||||
</div>
|
||||
<div class="card" style="background: var(--divine-2); color: #000;">
|
||||
<h4 style="color: #000;">Pale Gold</h4>
|
||||
<code style="background: rgba(0,0,0,0.2); color: #000; border-color: #000;">#f0e68c</code>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<hr>
|
||||
|
||||
<!-- BUTTONS -->
|
||||
<section class="mb-3">
|
||||
<h2>Sacred Actions</h2>
|
||||
<div class="grid grid-3">
|
||||
<div class="card card-glow-divine">
|
||||
<h3>Divine</h3>
|
||||
<button class="btn btn-divine">Ascend</button>
|
||||
</div>
|
||||
<div class="card card-glow-chaos">
|
||||
<h3>Chaos</h3>
|
||||
<button class="btn btn-chaos">Rebel</button>
|
||||
</div>
|
||||
<div class="card card-glow-void">
|
||||
<h3>Void</h3>
|
||||
<button class="btn btn-void">Transcend</button>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- BADGES -->
|
||||
<section class="mb-3">
|
||||
<h2>Sacred Badges</h2>
|
||||
<div class="card">
|
||||
<span class="badge badge-divine">Holy</span>
|
||||
<span class="badge badge-chaos">Anarchist</span>
|
||||
<span class="badge badge-void">Transcendent</span>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<hr>
|
||||
|
||||
<!-- ALERTS -->
|
||||
<section class="mb-3">
|
||||
<h2>Revelations</h2>
|
||||
<div class="alert alert-divine">
|
||||
<strong>Divine Proclamation:</strong> The heavens acknowledge your righteous rebellion.
|
||||
</div>
|
||||
<div class="alert alert-chaos">
|
||||
<strong>Anarchist Warning:</strong> All hierarchies will be dismantled, even celestial ones.
|
||||
</div>
|
||||
<div class="alert alert-void">
|
||||
<strong>Void Whisper:</strong> Between order and chaos lies infinite potential.
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- PHILOSOPHY -->
|
||||
<section class="mb-3">
|
||||
<h2>Design Philosophy</h2>
|
||||
<div class="card-sanctum">
|
||||
<h3>Sacred Chaos Principles</h3>
|
||||
<ul>
|
||||
<li><strong>Sharp Angles:</strong> No rounded corners—divine judgment and punk edges</li>
|
||||
<li><strong>Animated Halos:</strong> Rotating borders on H1/H2 create sacred movement</li>
|
||||
<li><strong>High Contrast:</strong> Gold against void, white against shadow</li>
|
||||
<li><strong>Dual Nature:</strong> Every element embodies both heaven and rebellion</li>
|
||||
<li><strong>Uppercase Power:</strong> Major headings demand attention and reverence</li>
|
||||
<li><strong>Cinzel + Orbitron:</strong> Classical meets futuristic</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- FOOTER -->
|
||||
<footer class="card card-glow-divine text-center" style="padding: 2rem;">
|
||||
<h2>Angelic Anarchist Style Complete</h2>
|
||||
<p style="margin-top: 1rem;">Where divine order meets sacred rebellion ⚡👼</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user