Changed around line 1
- --primary-color: #00ff9d;
- --secondary-color: #001a2c;
- --accent-color: #ff3366;
- --text-color: #ffffff;
- --card-bg: rgba(255, 255, 255, 0.1);
- --gradient: linear-gradient(135deg, var(--secondary-color), #004466);
+ --primary-color: #6366f1; /* Indigo */
+ --secondary-color: #1e293b; /* Slate gray */
+ --accent-color: #f43f5e; /* Rose */
+ --text-color: #f8fafc; /* Light gray */
+ --card-bg: rgba(30, 41, 59, 0.7);
+ --gradient: linear-gradient(135deg, #0f172a, #1e293b);
- margin: 0;
- padding: 0;
- box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
- font-family: 'system-ui', -apple-system, sans-serif;
- background: var(--gradient);
- color: var(--text-color);
- min-height: 100vh;
- line-height: 1.6;
+ font-family:
+ "system-ui",
+ -apple-system,
+ sans-serif;
+ background: var(--gradient);
+ color: var(--text-color);
+ min-height: 100vh;
+ line-height: 1.6;
- padding: 4rem 2rem;
- text-align: center;
- background: rgba(0, 0, 0, 0.2);
- backdrop-filter: blur(10px);
+ padding: 4rem 2rem;
+ text-align: center;
+ background: rgba(15, 23, 42, 0.6);
+ backdrop-filter: blur(10px);
+ border-bottom: 1px solid rgba(99, 102, 241, 0.1);
- font-size: 3.5rem;
- margin-bottom: 1rem;
- background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- animation: glow 2s ease-in-out infinite alternate;
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ animation: glow 3s ease-in-out infinite alternate;
- font-size: 1.2rem;
- max-width: 600px;
- margin: 0 auto;
- color: var(--primary-color);
+ font-size: 1.2rem;
+ max-width: 600px;
+ margin: 0 auto;
+ color: rgba(248, 250, 252, 0.9);
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
- gap: 2rem;
- padding: 4rem 2rem;
- max-width: 1200px;
- margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
- background: var(--card-bg);
- border-radius: 15px;
- padding: 2rem;
- text-align: center;
- transition: transform 0.3s ease, box-shadow 0.3s ease;
- backdrop-filter: blur(5px);
- border: 1px solid rgba(255, 255, 255, 0.1);
+ background: var(--card-bg);
+ border-radius: 1rem;
+ padding: 2rem;
+ text-align: center;
+ transition: all 0.3s ease;
+ backdrop-filter: blur(8px);
+ border: 1px solid rgba(99, 102, 241, 0.1);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
- transform: translateY(-10px);
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
+ transform: translateY(-5px);
+ box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
+ border-color: rgba(99, 102, 241, 0.3);
- color: var(--primary-color);
- text-decoration: none;
- font-size: 1.5rem;
- font-weight: bold;
- display: block;
- margin-bottom: 1rem;
+ color: var(--primary-color);
+ text-decoration: none;
+ font-size: 1.5rem;
+ font-weight: bold;
+ display: block;
+ margin-bottom: 1rem;
+ transition: color 0.2s ease;
+ }
+
+ .project-link:hover {
+ color: var(--accent-color);
- color: rgba(255, 255, 255, 0.8);
+ color: rgba(248, 250, 252, 0.8);
- opacity: 0.7;
+ opacity: 0.6;
- color: var(--accent-color);
- font-size: 1.5rem;
- font-weight: bold;
+ color: var(--accent-color);
+ font-size: 1.5rem;
+ font-weight: bold;
- text-align: center;
- padding: 2rem;
- background: rgba(0, 0, 0, 0.2);
+ text-align: center;
+ padding: 2rem;
+ background: rgba(15, 23, 42, 0.6);
+ border-top: 1px solid rgba(99, 102, 241, 0.1);
- from {
- text-shadow: 0 0 10px var(--primary-color),
- 0 0 20px var(--primary-color),
- 0 0 30px var(--primary-color);
- }
- to {
- text-shadow: 0 0 20px var(--primary-color),
- 0 0 30px var(--primary-color),
- 0 0 40px var(--primary-color);
- }
+ from {
+ text-shadow:
+ 0 0 20px rgba(99, 102, 241, 0.5),
+ 0 0 30px rgba(99, 102, 241, 0.3);
+ }
+ to {
+ text-shadow:
+ 0 0 30px rgba(244, 63, 94, 0.5),
+ 0 0 40px rgba(244, 63, 94, 0.3);
+ }
- .hero-section h1 {
- font-size: 2.5rem;
- }
-
- .projects-grid {
- grid-template-columns: 1fr;
- padding: 2rem 1rem;
- }
- }
+ .hero-section h1 {
+ font-size: 2.5rem;
+ }
+
+ .projects-grid {
+ grid-template-columns: 1fr;
+ padding: 2rem 1rem;
+ }
+ }