File size: 908 Bytes
998d987
 
 
 
 
98b952a
998d987
 
 
 
98b952a
 
998d987
 
 
98b952a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
998d987
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  color-scheme: dark;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-color: #09080f;
  color: #ede9f8;
}

.story-card {
  @apply rounded-2xl border border-purple-800/40 bg-[#120f1e] p-5 shadow-soft;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.06); }
  66%       { transform: translate(-25px, 20px) scale(0.94); }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-35px, 40px) scale(1.04); }
  66%       { transform: translate(30px, -15px) scale(0.96); }
}

@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, 35px) scale(1.08); }
}