2026-01-15 13:42:56 +00:00
|
|
|
@import 'tailwindcss';
|
2025-12-26 23:07:58 +00:00
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
--background: #ffffff;
|
2026-01-14 15:25:39 +00:00
|
|
|
--foreground: #1a1a1a;
|
2025-12-26 23:07:58 +00:00
|
|
|
}
|
|
|
|
|
|
2026-01-14 15:25:39 +00:00
|
|
|
html,
|
2025-12-26 23:07:58 +00:00
|
|
|
body {
|
2026-01-14 15:25:39 +00:00
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2025-12-26 23:07:58 +00:00
|
|
|
background: var(--background);
|
|
|
|
|
color: var(--foreground);
|
2026-01-14 15:25:39 +00:00
|
|
|
font-family: var(--font-plus-jakarta), 'Plus Jakarta Sans', sans-serif;
|
2025-12-26 23:07:58 +00:00
|
|
|
}
|
2026-01-14 15:25:39 +00:00
|
|
|
|
|
|
|
|
@keyframes gradient {
|
|
|
|
|
0% {
|
|
|
|
|
background-position: 0% 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
50% {
|
|
|
|
|
background-position: 100% 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
background-position: 0% 50%;
|
|
|
|
|
}
|
2026-01-15 13:42:56 +00:00
|
|
|
}
|