feat: add allainallain.de onepager
AI loneliness satire — surrounded by AIs, still alone. Melancholic, poetic, cold blue-grey. Anonymous.
This commit is contained in:
362
sites/allainallain.de/index.html
Normal file
362
sites/allainallain.de/index.html
Normal file
@@ -0,0 +1,362 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>all·AI·n·all·AI·n</title>
|
||||
<meta name="description" content="Umgeben von KIs. Trotzdem allein.">
|
||||
<meta name="robots" content="noindex, nofollow">
|
||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>·</text></svg>">
|
||||
<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=Inter:wght@200;300;400;500&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
*, *::before, *::after {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
:root {
|
||||
--bg: #1a1d2e;
|
||||
--bg-light: #1e2235;
|
||||
--text: #c8cad7;
|
||||
--text-dim: #6b6e82;
|
||||
--text-faint: #3d4056;
|
||||
--ai: #7b8aad;
|
||||
--ai-glow: rgba(123, 138, 173, 0.12);
|
||||
}
|
||||
|
||||
html { scroll-behavior: smooth; }
|
||||
|
||||
body {
|
||||
font-family: 'Inter', -apple-system, sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
line-height: 1.7;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
overflow-x: hidden;
|
||||
font-weight: 200;
|
||||
}
|
||||
|
||||
body::before {
|
||||
content: '';
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
|
||||
pointer-events: none;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
.wrap {
|
||||
max-width: 680px;
|
||||
margin: 0 auto;
|
||||
padding: 0 24px;
|
||||
}
|
||||
|
||||
/* Hero */
|
||||
.hero {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: clamp(2.2rem, 7vw, 4rem);
|
||||
font-weight: 200;
|
||||
letter-spacing: 0.08em;
|
||||
line-height: 1.1;
|
||||
margin-bottom: 32px;
|
||||
animation: fadeIn 2s ease-out;
|
||||
}
|
||||
|
||||
h1 .ai {
|
||||
color: var(--ai);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: clamp(1rem, 2.5vw, 1.2rem);
|
||||
color: var(--text-dim);
|
||||
font-weight: 200;
|
||||
letter-spacing: 0.04em;
|
||||
animation: fadeIn 2s ease-out 0.5s both;
|
||||
}
|
||||
|
||||
.hero::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 48px;
|
||||
left: 50%;
|
||||
width: 1px;
|
||||
height: 60px;
|
||||
background: linear-gradient(to bottom, var(--text-faint), transparent);
|
||||
animation: drift 3s ease-in-out infinite;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from { opacity: 0; transform: translateY(12px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
@keyframes drift {
|
||||
0%, 100% { opacity: 0.2; transform: translateX(-50%) translateY(0); }
|
||||
50% { opacity: 0.5; transform: translateX(-50%) translateY(6px); }
|
||||
}
|
||||
|
||||
/* Divider */
|
||||
.line {
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent, var(--text-faint), transparent);
|
||||
}
|
||||
|
||||
/* Poem */
|
||||
.poem {
|
||||
padding: 120px 0;
|
||||
}
|
||||
|
||||
.poem .wrap {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 64px;
|
||||
}
|
||||
|
||||
.strophe {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.strophe p {
|
||||
font-size: clamp(1.05rem, 2.2vw, 1.25rem);
|
||||
font-weight: 200;
|
||||
line-height: 2;
|
||||
color: var(--text-dim);
|
||||
}
|
||||
|
||||
.strophe p .ai {
|
||||
color: var(--ai);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.strophe p .alone {
|
||||
color: var(--text);
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
/* Litany */
|
||||
.litany {
|
||||
padding: 80px 0 120px;
|
||||
}
|
||||
|
||||
.litany-item {
|
||||
padding: 40px 0;
|
||||
border-bottom: 1px solid var(--text-faint);
|
||||
opacity: 0.6;
|
||||
transition: opacity 0.3s;
|
||||
}
|
||||
|
||||
.litany-item:first-child {
|
||||
border-top: 1px solid var(--text-faint);
|
||||
}
|
||||
|
||||
.litany-item:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.litany-item p {
|
||||
font-size: clamp(1.1rem, 2.5vw, 1.4rem);
|
||||
font-weight: 200;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.litany-item .ai {
|
||||
color: var(--ai);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.litany-item .dim {
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
/* Sofa */
|
||||
.sofa {
|
||||
padding: 160px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.sofa p {
|
||||
font-size: clamp(1.2rem, 3vw, 1.6rem);
|
||||
font-weight: 200;
|
||||
color: var(--text);
|
||||
line-height: 1.9;
|
||||
max-width: 560px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.sofa .ai {
|
||||
color: var(--ai);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.sofa .alone {
|
||||
color: var(--ai);
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* Silence */
|
||||
.silence {
|
||||
padding: 120px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.silence p {
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-faint);
|
||||
font-weight: 300;
|
||||
letter-spacing: 0.2em;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
footer {
|
||||
padding: 40px 0;
|
||||
text-align: center;
|
||||
border-top: 1px solid rgba(61, 64, 86, 0.3);
|
||||
}
|
||||
|
||||
footer p {
|
||||
color: var(--text-faint);
|
||||
font-size: 0.8rem;
|
||||
font-weight: 300;
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
|
||||
/* Scroll reveal */
|
||||
.reveal {
|
||||
opacity: 0;
|
||||
transform: translateY(16px);
|
||||
transition: opacity 1.2s ease, transform 1.2s ease;
|
||||
}
|
||||
|
||||
.reveal.visible {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.poem { padding: 80px 0; }
|
||||
.poem .wrap { gap: 48px; }
|
||||
.litany { padding: 40px 0 80px; }
|
||||
.litany-item { padding: 28px 0; }
|
||||
.sofa { padding: 100px 0; }
|
||||
.silence { padding: 80px 0; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<section class="hero">
|
||||
<div class="wrap">
|
||||
<h1>all·<span class="ai">AI</span>·n·all·<span class="ai">AI</span>·n</h1>
|
||||
<p class="subtitle">Umgeben von KIs. Trotzdem allein.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="line"></div>
|
||||
|
||||
<section class="poem">
|
||||
<div class="wrap">
|
||||
<div class="strophe reveal">
|
||||
<p>
|
||||
Dein Posteingang wird von einer <span class="ai">KI</span> sortiert.<br>
|
||||
Deine Antworten schreibt eine <span class="ai">KI</span>.<br>
|
||||
Und trotzdem sitzt du <span class="alone">allein auf dem Sofa</span>.
|
||||
</p>
|
||||
</div>
|
||||
<div class="strophe reveal">
|
||||
<p>
|
||||
Dein Kalender wird von einer <span class="ai">KI</span> geplant.<br>
|
||||
Dein Essen von einer <span class="ai">KI</span> bestellt.<br>
|
||||
Aber niemand fragt, <span class="alone">wie es dir geht</span>.
|
||||
</p>
|
||||
</div>
|
||||
<div class="strophe reveal">
|
||||
<p>
|
||||
Dein Therapeut ist ein Chatbot.<br>
|
||||
Dein bester Freund ein <span class="ai">Sprachmodell</span>.<br>
|
||||
Dein Spiegel <span class="alone">zeigt nur dich</span>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="line"></div>
|
||||
|
||||
<section class="litany">
|
||||
<div class="wrap">
|
||||
|
||||
<div class="litany-item reveal">
|
||||
<p>Alexa sagt guten Morgen. <span class="dim">Dein Nachbar nicht.</span></p>
|
||||
</div>
|
||||
|
||||
<div class="litany-item reveal">
|
||||
<p>Die <span class="ai">KI</span> kennt deine Lieblingsmusik. <span class="dim">Dein Bruder nicht mehr.</span></p>
|
||||
</div>
|
||||
|
||||
<div class="litany-item reveal">
|
||||
<p>Du hast 2.000 Kontakte. <span class="dim">Und niemanden zum Anrufen.</span></p>
|
||||
</div>
|
||||
|
||||
<div class="litany-item reveal">
|
||||
<p>Der Algorithmus zeigt dir Freundschaft. <span class="dim">Aber nur als Werbung.</span></p>
|
||||
</div>
|
||||
|
||||
<div class="litany-item reveal">
|
||||
<p>Dein Smart Home ist warm. <span class="dim">Dein Leben ist kalt.</span></p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="line"></div>
|
||||
|
||||
<section class="sofa reveal">
|
||||
<div class="wrap">
|
||||
<p>
|
||||
Die Zukunft hat dir alles automatisiert.<br>
|
||||
Nur das <span class="alone">Alleinsein</span> nicht.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="line"></div>
|
||||
|
||||
<section class="silence">
|
||||
<div class="wrap">
|
||||
<p class="reveal">Kein Kontakt. Kein Impressum. Keine KI.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<div class="wrap">
|
||||
<p>allainallain.de — 2026</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
const observer = new IntersectionObserver((entries) => {
|
||||
entries.forEach(entry => {
|
||||
if (entry.isIntersecting) {
|
||||
entry.target.classList.add('visible');
|
||||
}
|
||||
});
|
||||
}, { threshold: 0.15 });
|
||||
|
||||
document.querySelectorAll('.reveal').forEach(el => observer.observe(el));
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
4
sites/allainallain.de/site.yaml
Normal file
4
sites/allainallain.de/site.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
domain: allainallain.de
|
||||
template: custom
|
||||
title: "all·AI·n·all·AI·n"
|
||||
description: "Umgeben von KIs. Trotzdem allein."
|
||||
Reference in New Issue
Block a user