100 lines
3.3 KiB
HTML
100 lines
3.3 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: Brandy Meade's First Slip</title>
|
||
<style>
|
||
:root {
|
||
--void: #000000;
|
||
--neon-radish: #FF6B9D;
|
||
--copper-vein: #FF8C42;
|
||
--stardust: #FFFFFF;
|
||
}
|
||
|
||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
|
||
body {
|
||
background: var(--void);
|
||
color: var(--stardust);
|
||
font-family: 'Space Mono', monospace;
|
||
overflow-x: hidden;
|
||
perspective: 2000px;
|
||
}
|
||
|
||
.seam-vessel {
|
||
position: relative;
|
||
min-height: 100vh;
|
||
display: grid;
|
||
place-items: center;
|
||
transform-style: preserve-3d;
|
||
}
|
||
|
||
.golden-seam {
|
||
width: 100vw;
|
||
height: 200vh;
|
||
border: 1px solid var(--neon-radish);
|
||
border-radius: 50%;
|
||
animation: breathe 24s ease-in-out infinite;
|
||
box-shadow:
|
||
0 0 100px var(--neon-radish),
|
||
inset 0 0 200px var(--copper-vein);
|
||
}
|
||
|
||
@keyframes breathe {
|
||
0%, 100% { scale: 1; opacity: 1; }
|
||
50% { scale: 1.03; opacity: 0.8; }
|
||
}
|
||
|
||
.radish-oracle {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
font-size: 12rem;
|
||
background: linear-gradient(45deg, var(--neon-radish), var(--copper-vein));
|
||
-webkit-background-clip: text;
|
||
background-clip: text;
|
||
color: transparent;
|
||
text-align: center;
|
||
letter-spacing: -0.5em;
|
||
animation: materialize 8s cubic-bezier(0.17, 0.62, 0.83, 0.96) forwards;
|
||
}
|
||
|
||
@keyframes materialize {
|
||
0% { opacity: 0; filter: blur(50px); }
|
||
100% { opacity: 1; filter: none; }
|
||
}
|
||
|
||
.protocol-text {
|
||
position: fixed;
|
||
bottom: 5vh;
|
||
left: 5vw;
|
||
right: 5vw;
|
||
max-width: 80ch;
|
||
font-size: 0.875rem;
|
||
line-height: 1.6;
|
||
text-align: justify;
|
||
text-shadow: 0 0 20px var(--neon-radish);
|
||
}
|
||
|
||
.timestamp {
|
||
float: right;
|
||
font-size: 0.625rem;
|
||
color: var(--copper-vein);
|
||
}
|
||
</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-seam"></div>
|
||
<div class="radish-oracle">RADISH</div>
|
||
</div>
|
||
|
||
<section class="protocol-text">
|
||
<span class="timestamp">04:00:00 // 41°37′N 89°45′W</span>
|
||
MY FIRST SLIP: The 3D printer at the food-processing plant hummed its lullaby at 0400, when the humidity gauge read 97%. I did not sweep the shavings. I poured the vein. The radish slice that warped in the nozzle became the first coordinate in the garden's true north. Every glitch is a thread in the grand design, and I am finally adding my own stitch to the tapestry. This is not a repair. This is the celebration of the scar.
|
||
</section>
|
||
</body>
|
||
</html> |