File size: 1,396 Bytes
b682363
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* src/styles/Home.css */
.home {
    background-color: #0F172A;
    color: #F8FAFC;
    font-family: 'Inter', sans-serif;
    padding-bottom: 80px;
  }
  
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px;
    gap: 40px;
    background-color: #1E293B;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 30px;
  }
  
  .get-started-btn {
    background-color: #22C55E;
    color: white;
    padding: 12px 28px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
  }
  
  .get-started-btn:hover {
    background-color: #16A34A;
  }
  
  .features {
    padding: 60px 80px;
    background-color: #0F172A;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }
  
  .feature-card {
    background-color: #1F2937;
    padding: 24px;
    border-radius: 16px;
    width: 300px;
    box-shadow: 0 0 20px rgba(0, 255, 160, 0.05);
  }
  
  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .feature-card p {
    font-size: 16px;
    color: #CBD5E1;
  }