body { font-family: 'Space Grotesk', sans-serif; background-color: #dfdfdf; overflow-x: hidden; } .noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 50; opacity: 0.05; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); } /* Custom scrollbar to match brutalist vibe */ ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: #dfdfdf; } ::-webkit-scrollbar-thumb { background: #000; } ::-webkit-scrollbar-thumb:hover { background: #333; } .text-outline { -webkit-text-stroke: 1px black; color: transparent; } /* Gradient animation for the hero */ .hero-gradient { background: radial-gradient(circle at 50% 50%, rgba(255,192,203,0.6) 0%, rgba(255,255,255,0) 50%), radial-gradient(circle at 80% 20%, rgba(255,218,185,0.6) 0%, rgba(255,255,255,0) 50%), radial-gradient(circle at 20% 80%, rgba(221,160,221,0.6) 0%, rgba(255,255,255,0) 50%); background-size: 200% 200%; }