Initial commit: Vite + React project setup

This commit is contained in:
Sebastian
2025-12-05 16:56:43 +00:00
commit bd25742bf5
32 changed files with 3369 additions and 0 deletions

27
src/index.css Normal file
View File

@@ -0,0 +1,27 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-white text-gray-900 antialiased;
}
}
@layer utilities {
.text-shadow-red {
text-shadow: 0 0 20px rgba(200, 16, 46, 0.5);
}
.shadow-red-glow {
box-shadow: 0 0 40px rgba(200, 16, 46, 0.3);
}
.shadow-red-strong {
box-shadow: 0 8px 32px rgba(200, 16, 46, 0.4);
}
}
@media (max-height: 750px){
body{zoom: 0.8;}
}