Changed around line 0
- :root {
- --primary-color: #2D6CDF;
- --secondary-color: #34D399;
- --background: #F8FAFC;
- --text-primary: #1E293B;
- --text-secondary: #64748B;
- }
-
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
-
- body {
- font-family: system-ui, -apple-system, sans-serif;
- background: var(--background);
- color: var(--text-primary);
- line-height: 1.6;
- }
-
- .main-nav {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 1rem 2rem;
- background: white;
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
- position: fixed;
- width: 100%;
- top: 0;
- z-index: 1000;
- }
-
- .logo {
- font-size: 1.5rem;
- font-weight: bold;
- background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
-
- .nav-links {
- display: flex;
- gap: 2rem;
- align-items: center;
- }
-
- .nav-links a {
- text-decoration: none;
- color: var(--text-primary);
- transition: color 0.3s ease;
- }
-
- .hero {
- padding: 8rem 2rem 4rem;
- text-align: center;
- background: linear-gradient(135deg, #2D6CDF11, #34D39911);
- }
-
- .hero h1 {
- font-size: 3.5rem;
- margin-bottom: 1rem;
- background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
-
- .story-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
- gap: 2rem;
- padding: 2rem;
- }
-
- .story-card {
- background: white;
- border-radius: 1rem;
- overflow: hidden;
- box-shadow: 0 4px 20px rgba(0,0,0,0.1);
- transition: transform 0.3s ease;
- }
-
- .story-card:hover {
- transform: translateY(-5px);
- }
-
- .story-media {
- height: 200px;
- background: linear-gradient(45deg, #2D6CDF33, #34D39933);
- position: relative;
- }
-
- @media (max-width: 768px) {
- .nav-links {
- display: none;
- }
-
- .hero h1 {
- font-size: 2.5rem;
- }
-
- .story-grid {
- grid-template-columns: 1fr;
- }
- }