2026-04-08 13:44:34 -05:00
|
|
|
*, *::before, *::after {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2026-04-08 12:23:24 -05:00
|
|
|
}
|
|
|
|
|
|
2026-04-08 13:44:34 -05:00
|
|
|
:root {
|
|
|
|
|
--bone: #e8dcc8;
|
|
|
|
|
--bone-dim: #9e9080;
|
|
|
|
|
--red: #c0392b;
|
|
|
|
|
--red-glow: rgba(192, 57, 43, 0.4);
|
2026-04-11 11:56:29 -05:00
|
|
|
--dark: #06030f;
|
|
|
|
|
--dark-mid: rgba(8, 4, 20, 0.85);
|
|
|
|
|
--dark-card: rgba(12, 6, 28, 0.78);
|
|
|
|
|
--border: rgba(180, 140, 255, 0.18);
|
2026-04-08 13:44:34 -05:00
|
|
|
--font-display: 'Georgia', 'Times New Roman', serif;
|
|
|
|
|
--font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
|
2026-04-08 12:23:24 -05:00
|
|
|
}
|
|
|
|
|
|
2026-04-08 13:44:34 -05:00
|
|
|
html {
|
|
|
|
|
scroll-behavior: smooth;
|
2026-04-08 12:23:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2026-04-11 11:56:29 -05:00
|
|
|
background-color: #06030f;
|
|
|
|
|
background-image: url('/space-bg.jpg');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-position: center top;
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
|
background-repeat: no-repeat;
|
2026-04-08 13:44:34 -05:00
|
|
|
color: var(--bone);
|
|
|
|
|
font-family: var(--font-body);
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
overflow-x: hidden;
|
2026-04-08 12:23:24 -05:00
|
|
|
}
|
|
|
|
|
|
2026-04-11 11:56:29 -05:00
|
|
|
/* Dark overlay so text stays readable over the space background */
|
|
|
|
|
body::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
background: rgba(4, 0, 14, 0.65);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#__next {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-08 12:23:24 -05:00
|
|
|
a {
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-08 13:44:34 -05:00
|
|
|
img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
|
background: var(--red);
|
|
|
|
|
color: var(--bone);
|
2026-04-08 12:23:24 -05:00
|
|
|
}
|
2026-04-08 13:44:34 -05:00
|
|
|
|
|
|
|
|
/* Scrollbar */
|
|
|
|
|
::-webkit-scrollbar { width: 6px; }
|
2026-04-11 11:56:29 -05:00
|
|
|
::-webkit-scrollbar-track { background: #06030f; }
|
2026-04-08 13:44:34 -05:00
|
|
|
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
|