@tailwind base; @tailwind components; @tailwind utilities; :root { --foreground-rgb: 0, 0, 0; --background-start-rgb: 255, 255, 255; --background-end-rgb: 255, 255, 255; } @media (prefers-color-scheme: dark) { :root { --foreground-rgb: 255, 255, 255; --background-start-rgb: 0, 0, 0; --background-end-rgb: 0, 0, 0; } } body { color: rgb(var(--foreground-rgb)); background: linear-gradient( to bottom, transparent, rgb(var(--background-end-rgb)) ) rgb(var(--background-start-rgb)); background: white; } .crt { background: linear-gradient(to top, #000000, #000000, #333333, #333333); background-size: cover; background-size: 100% 2px; color: #00ff00; font-size: 50px; /* text-align: center; */ text-shadow: 0 0 10px #00ff00; filter: blur(.8px); border-radius: 20px; } .red-bot { color: rgb(235, 90, 90); } .blue-bot { color: rgb(94, 158, 217); } @media screen{ .crt { animation: scanlines infinite 55s linear ; } } @keyframes scanlines { from { background-position: 0 0; } to { background-position: 0 -10px; } } @layer utilities { .text-balance { text-wrap: balance; } }