Spaces:
Running
Running
| /* We'll primarily use Tailwind classes instead of custom CSS */ | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap'); | |
| .App { | |
| text-align: center; | |
| } | |
| .App-header { | |
| background-color: #282c34; | |
| padding: 20px; | |
| color: white; | |
| } | |
| .hero { | |
| padding: 40px; | |
| background: linear-gradient(135deg, #16a34a, #2563eb); | |
| color: white; | |
| border-radius: 10px; | |
| margin: 20px; | |
| } | |
| .hero h2 { | |
| font-size: 2rem; | |
| margin-bottom: 15px; | |
| } | |
| @media (max-width: 768px) { | |
| .hero h2 { | |
| font-size: 1.5rem; | |
| } | |
| } |