Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #3498db;
+ --text-color: #333;
+ --bg-color: #fff;
+ --accent-color: #e74c3c;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--bg-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ .header {
+ position: fixed;
+ top: 0;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ z-index: 1000;
+ }
+
+ nav ul {
+ display: flex;
+ justify-content: center;
+ list-style: none;
+ padding: 20px 0;
+ }
+
+ nav ul li {
+ margin: 0 20px;
+ }
+
+ nav ul li a {
+ text-decoration: none;
+ color: var(--primary-color);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ nav ul li a:hover {
+ color: var(--secondary-color);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 20px;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .hero h2 {
+ font-size: 2rem;
+ margin-bottom: 20px;
+ opacity: 0.9;
+ }
+
+ section {
+ padding: 100px 0;
+ }
+
+ .skill-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 30px;
+ margin-top: 40px;
+ }
+
+ .skill-card {
+ background: white;
+ padding: 30px;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .skill-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .timeline {
+ position: relative;
+ max-width: 800px;
+ margin: 40px auto;
+ }
+
+ .timeline-item {
+ margin-bottom: 40px;
+ padding: 20px;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ }
+
+ .contact-info {
+ text-align: center;
+ margin-top: 40px;
+ }
+
+ .footer {
+ background: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 20px 0;
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @media (max-width: 768px) {
+ nav ul {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ nav ul li {
+ margin: 10px 0;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero h2 {
+ font-size: 1.5rem;
+ }
+
+ section {
+ padding: 60px 0;
+ }
+ }