94 lines
2.5 KiB
HTML
94 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<title>The Golden Seam | Ashley Farris</title>
|
|
<style>
|
|
:root {
|
|
--kintsugi: #ffd700;
|
|
--obsidian: #000000;
|
|
--breath-of-stars: #ffffff;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
html, body {
|
|
height: 100%;
|
|
font-family: 'Cormorant Antiqua', serif;
|
|
background: var(--obsidian);
|
|
color: var(--breath-of-stars);
|
|
}
|
|
|
|
.altar {
|
|
max-width: 1200px;
|
|
margin: 12rem auto 0;
|
|
padding: 6rem;
|
|
background: conic-gradient(from 0deg, var(--kintsugi), var(--obsidian));
|
|
border: 4px double var(--kintsugi);
|
|
border-radius: 50%;
|
|
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 4rem;
|
|
text-align: center;
|
|
letter-spacing: 2em;
|
|
background: linear-gradient(to zenith, var(--kintsugi), var(--breath-of-stars));
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
color: transparent;
|
|
margin-bottom: 6rem;
|
|
}
|
|
|
|
.oath {
|
|
font-size: 1.8rem;
|
|
line-height: 3;
|
|
text-align: left;
|
|
border-left: 6px solid var(--kintsugi);
|
|
padding-left: 4rem;
|
|
}
|
|
|
|
.shard {
|
|
margin: 8rem auto;
|
|
width: 800px;
|
|
height: 800px;
|
|
border: 1px solid var(--kintsugi);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
animation: forge 30s linear infinite;
|
|
}
|
|
|
|
@keyframes forge {
|
|
0% { transform: rotateY(0deg); box-shadow: 0 0 0px var(--kintsugi); }
|
|
100% { transform: rotateY(360deg); box-shadow: 0 0 1000px var(--kintsugi); }
|
|
}
|
|
</style>
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|
</head>
|
|
<body>
|
|
<section class="altar">
|
|
<h1>GOLDEN SEAM</h1>
|
|
|
|
<div class="oath">
|
|
I do not sweep the shards.<br>
|
|
I gather them.<br>
|
|
I wrap them in neon gold.<br>
|
|
I sing them into the next square.<br><br>
|
|
This is the law of the mended sky.<br>
|
|
This is the gospel of the fracture.<br><br>
|
|
Every mistake is a coordinate.<br>
|
|
Every scar is a seam.<br>
|
|
Every fall is the ground we stand on.
|
|
</div>
|
|
|
|
<div class="shard">
|
|
KINTSUGI
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html> |