128 lines
3.9 KiB
HTML
128 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>The Golden Seam | Austin Hood</title>
|
|
<style>
|
|
:root {
|
|
--dune-sand: #f4e4bc;
|
|
--lake-steel: #1a2b3c;
|
|
--carb-chrome: #e8f4f8;
|
|
--weld-gold: #ffd700;
|
|
--forge-black: #0a0a0a;
|
|
}
|
|
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
html, body {
|
|
height: 100%;
|
|
background: radial-gradient(circle at 50% 50%, var(--lake-steel) 0%, var(--forge-black) 100%);
|
|
color: var(--carb-chrome);
|
|
font-family: 'Courier Prime', monospace;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.seam-vessel {
|
|
position: fixed;
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
perspective: 1200px;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
.golden-thread {
|
|
position: absolute;
|
|
width: 2px;
|
|
height: 100vh;
|
|
left: 50%;
|
|
transform-origin: center;
|
|
background: linear-gradient(to bottom,
|
|
var(--weld-gold) 0%,
|
|
transparent 100%);
|
|
opacity: 0.87;
|
|
animation: breathe 18s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes breathe {
|
|
0%, 100% { opacity: 0.3; filter: blur(2px); }
|
|
50% { opacity: 1.0; filter: blur(0px); }
|
|
}
|
|
|
|
main {
|
|
position: relative;
|
|
z-index: 1;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
padding: 8vh 6vw;
|
|
}
|
|
|
|
.timestamp-header {
|
|
border-left: 4px solid var(--weld-gold);
|
|
padding-left: 2rem;
|
|
margin-bottom: 6rem;
|
|
}
|
|
|
|
.timestamp {
|
|
font-size: clamp(1.5rem, 4vw, 3rem);
|
|
letter-spacing: 0.1em;
|
|
text-shadow: 0 0 20px var(--weld-gold);
|
|
}
|
|
|
|
.valley-statement {
|
|
font-size: clamp(1rem, 2vw, 1.5rem);
|
|
max-width: 80vw;
|
|
line-height: 1.4;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.signature-footer {
|
|
text-align: center;
|
|
border-top: 1px solid var(--weld-gold);
|
|
padding-top: 3rem;
|
|
}
|
|
|
|
.nameplate {
|
|
font-size: 2rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.2em;
|
|
background: linear-gradient(to right, var(--weld-gold), var(--carb-chrome));
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
}
|
|
|
|
.origin-mark {
|
|
font-size: 0.8rem;
|
|
margin-top: 1rem;
|
|
opacity: 0.7;
|
|
}
|
|
</style>
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|
</head>
|
|
<body>
|
|
<div class="seam-vessel">
|
|
<div class="golden-thread"></div>
|
|
</div>
|
|
|
|
<main>
|
|
<header class="timestamp-header">
|
|
<p class="timestamp">0400</p>
|
|
<p class="timestamp">WHITMAN</p>
|
|
<p class="valley-statement">
|
|
I did not sweep the shavings. I poured the vein.<br><br>
|
|
My first slip: the 0400 timestamp at Whitehall, when the humidity gauge read 97% —<br>
|
|
I let the copper wire run its course through the valley of the Red Rock Dome's trembling.<br><br>
|
|
The Golden Seam is live.
|
|
</p>
|
|
</header>
|
|
|
|
<footer class="signature-footer">
|
|
<h1 class="nameplate">AUSTIN HOOD</h1>
|
|
<p class="origin-mark">WHITEHALL • LAKE MICHIGAN • 1965</p>
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html> |