2025-11-17 22:21:49 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2026-02-06 16:55:15 +00:00
|
|
|
<title>Contact</title>
|
2025-11-17 22:21:49 +00:00
|
|
|
<style>
|
2026-02-15 05:39:10 +00:00
|
|
|
*,
|
|
|
|
|
*::before,
|
|
|
|
|
*::after {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-17 22:21:49 +00:00
|
|
|
body {
|
2026-02-15 05:39:10 +00:00
|
|
|
font-family: system-ui, -apple-system, sans-serif;
|
2025-11-17 22:21:49 +00:00
|
|
|
margin: 0;
|
2026-02-06 16:55:15 +00:00
|
|
|
padding: 0;
|
|
|
|
|
overflow: hidden;
|
2026-02-15 05:39:10 +00:00
|
|
|
background: #060a10;
|
2026-02-06 16:55:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#fractal-canvas {
|
2026-05-21 11:13:36 +00:00
|
|
|
image-rendering: auto;
|
2026-02-06 16:55:15 +00:00
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: 0;
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-06 16:55:15 +00:00
|
|
|
.content-overlay {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-15 05:39:10 +00:00
|
|
|
.glass-card {
|
|
|
|
|
background: rgba(10, 14, 20, 0.55);
|
|
|
|
|
backdrop-filter: blur(16px);
|
|
|
|
|
-webkit-backdrop-filter: blur(16px);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
|
|
|
border-radius: 16px;
|
2026-02-06 16:55:15 +00:00
|
|
|
padding: 2.5rem 3rem;
|
2025-11-17 22:21:49 +00:00
|
|
|
text-align: center;
|
2026-02-06 16:55:15 +00:00
|
|
|
min-width: 250px;
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-15 05:39:10 +00:00
|
|
|
.glass-card h2 {
|
2026-02-06 16:55:15 +00:00
|
|
|
color: #fff;
|
|
|
|
|
margin: 0 0 1.5rem 0;
|
2026-02-15 05:39:10 +00:00
|
|
|
font-weight: 300;
|
|
|
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
|
|
|
font-size: 1.6rem;
|
|
|
|
|
letter-spacing: 0.01em;
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-06 16:55:15 +00:00
|
|
|
.contact-list {
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-06 16:55:15 +00:00
|
|
|
.contact-list li {
|
2026-02-15 05:39:10 +00:00
|
|
|
margin: 0.75rem 0;
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-06 16:55:15 +00:00
|
|
|
.contact-list li a {
|
|
|
|
|
text-decoration: none;
|
2026-02-15 05:39:10 +00:00
|
|
|
color: rgba(255, 255, 255, 0.75);
|
2026-02-06 16:55:15 +00:00
|
|
|
padding: 0.6rem 1.5rem;
|
|
|
|
|
display: inline-block;
|
2026-02-15 05:39:10 +00:00
|
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
letter-spacing: 0.06em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
transition: all 250ms ease;
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-06 16:55:15 +00:00
|
|
|
.contact-list li a:hover {
|
2026-02-15 05:39:10 +00:00
|
|
|
color: #fff;
|
|
|
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-15 05:39:10 +00:00
|
|
|
.back-link {
|
2026-02-06 16:55:15 +00:00
|
|
|
margin-top: 2rem;
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
2026-02-06 16:55:15 +00:00
|
|
|
|
2026-02-15 05:39:10 +00:00
|
|
|
.back-link a {
|
2026-02-06 16:55:15 +00:00
|
|
|
text-decoration: none;
|
2026-02-15 05:39:10 +00:00
|
|
|
color: rgba(255, 255, 255, 0.4);
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
transition: color 250ms ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.back-link a:hover {
|
|
|
|
|
color: rgba(255, 255, 255, 0.7);
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
2026-02-06 16:55:15 +00:00
|
|
|
|
2026-02-15 05:39:10 +00:00
|
|
|
@keyframes fadeInUp {
|
|
|
|
|
from {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(12px);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
2025-11-17 22:21:49 +00:00
|
|
|
}
|
|
|
|
|
</style>
|
2026-07-24 08:51:40 +00:00
|
|
|
<link rel="preload" href="/routes/root/dist-strips.bin?v=1" as="fetch" crossorigin />
|
2026-07-24 09:06:42 +00:00
|
|
|
<script defer src="/routes/root/fractal-gl.js?v=13"></script>
|
2026-02-06 16:55:15 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<canvas id="fractal-canvas"></canvas>
|
|
|
|
|
|
|
|
|
|
<div class="content-overlay">
|
2026-02-15 05:39:10 +00:00
|
|
|
<div class="glass-card">
|
2026-02-06 16:55:15 +00:00
|
|
|
<h2>Contact</h2>
|
|
|
|
|
<ul class="contact-list">
|
|
|
|
|
<li><a href="mailto:">Email me</a></li>
|
|
|
|
|
<li><a href="/contact/message">Direct message</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<nav class="back-link">
|
|
|
|
|
<a href="/">back to home</a>
|
|
|
|
|
</nav>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-07-24 08:51:40 +00:00
|
|
|
<!-- fractal background loaded via deferred <script> in <head> -->
|
|
|
|
|
|
2025-11-17 22:21:49 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|