Spaces:
Configuration error
Configuration error
Update README.md
Browse files
README.md
CHANGED
@@ -19,65 +19,54 @@ pinned: false
|
|
19 |
margin: 0;
|
20 |
padding: 0;
|
21 |
}
|
22 |
-
|
23 |
-
.container {
|
24 |
max-width: 1200px;
|
25 |
margin: 0 auto;
|
26 |
padding: 40px;
|
27 |
}
|
28 |
-
|
29 |
.header {
|
30 |
display: flex;
|
31 |
justify-content: space-between;
|
32 |
align-items: center;
|
33 |
margin-bottom: 40px;
|
34 |
}
|
35 |
-
|
36 |
.header h1 {
|
37 |
font-size: 36px;
|
38 |
color: #0047AB;
|
39 |
margin: 0;
|
40 |
}
|
41 |
-
|
42 |
.nav {
|
43 |
display: flex;
|
44 |
gap: 20px;
|
45 |
}
|
46 |
-
|
47 |
.nav a {
|
48 |
color: #333;
|
49 |
text-decoration: none;
|
50 |
font-size: 18px;
|
51 |
}
|
52 |
-
|
53 |
.nav a:hover {
|
54 |
color: #0047AB;
|
55 |
}
|
56 |
-
|
57 |
.hero {
|
58 |
display: flex;
|
59 |
align-items: center;
|
60 |
margin-bottom: 60px;
|
61 |
}
|
62 |
-
|
63 |
.hero-content {
|
64 |
flex: 1;
|
65 |
padding-right: 40px;
|
66 |
}
|
67 |
-
|
68 |
.hero-content h2 {
|
69 |
font-size: 48px;
|
70 |
color: #0047AB;
|
71 |
margin-top: 0;
|
72 |
}
|
73 |
-
|
74 |
.hero-content p {
|
75 |
font-size: 20px;
|
76 |
color: #333;
|
77 |
line-height: 1.5;
|
78 |
margin-bottom: 30px;
|
79 |
}
|
80 |
-
|
81 |
.cta-button {
|
82 |
display: inline-block;
|
83 |
background-color: #0047AB;
|
@@ -87,30 +76,25 @@ pinned: false
|
|
87 |
text-decoration: none;
|
88 |
font-size: 18px;
|
89 |
}
|
90 |
-
|
91 |
.cta-button:hover {
|
92 |
background-color: #003A8C;
|
93 |
}
|
94 |
-
|
95 |
.features {
|
96 |
display: grid;
|
97 |
grid-template-columns: repeat(3, 1fr);
|
98 |
gap: 40px;
|
99 |
}
|
100 |
-
|
101 |
.feature {
|
102 |
background-color: #f5f5f5;
|
103 |
padding: 30px;
|
104 |
border-radius: 8px;
|
105 |
text-align: center;
|
106 |
}
|
107 |
-
|
108 |
.feature h3 {
|
109 |
font-size: 24px;
|
110 |
color: #0047AB;
|
111 |
margin-top: 0;
|
112 |
}
|
113 |
-
|
114 |
.feature p {
|
115 |
font-size: 16px;
|
116 |
color: #333;
|
|
|
19 |
margin: 0;
|
20 |
padding: 0;
|
21 |
}
|
22 |
+
.container {
|
|
|
23 |
max-width: 1200px;
|
24 |
margin: 0 auto;
|
25 |
padding: 40px;
|
26 |
}
|
|
|
27 |
.header {
|
28 |
display: flex;
|
29 |
justify-content: space-between;
|
30 |
align-items: center;
|
31 |
margin-bottom: 40px;
|
32 |
}
|
|
|
33 |
.header h1 {
|
34 |
font-size: 36px;
|
35 |
color: #0047AB;
|
36 |
margin: 0;
|
37 |
}
|
|
|
38 |
.nav {
|
39 |
display: flex;
|
40 |
gap: 20px;
|
41 |
}
|
|
|
42 |
.nav a {
|
43 |
color: #333;
|
44 |
text-decoration: none;
|
45 |
font-size: 18px;
|
46 |
}
|
|
|
47 |
.nav a:hover {
|
48 |
color: #0047AB;
|
49 |
}
|
|
|
50 |
.hero {
|
51 |
display: flex;
|
52 |
align-items: center;
|
53 |
margin-bottom: 60px;
|
54 |
}
|
|
|
55 |
.hero-content {
|
56 |
flex: 1;
|
57 |
padding-right: 40px;
|
58 |
}
|
|
|
59 |
.hero-content h2 {
|
60 |
font-size: 48px;
|
61 |
color: #0047AB;
|
62 |
margin-top: 0;
|
63 |
}
|
|
|
64 |
.hero-content p {
|
65 |
font-size: 20px;
|
66 |
color: #333;
|
67 |
line-height: 1.5;
|
68 |
margin-bottom: 30px;
|
69 |
}
|
|
|
70 |
.cta-button {
|
71 |
display: inline-block;
|
72 |
background-color: #0047AB;
|
|
|
76 |
text-decoration: none;
|
77 |
font-size: 18px;
|
78 |
}
|
|
|
79 |
.cta-button:hover {
|
80 |
background-color: #003A8C;
|
81 |
}
|
|
|
82 |
.features {
|
83 |
display: grid;
|
84 |
grid-template-columns: repeat(3, 1fr);
|
85 |
gap: 40px;
|
86 |
}
|
|
|
87 |
.feature {
|
88 |
background-color: #f5f5f5;
|
89 |
padding: 30px;
|
90 |
border-radius: 8px;
|
91 |
text-align: center;
|
92 |
}
|
|
|
93 |
.feature h3 {
|
94 |
font-size: 24px;
|
95 |
color: #0047AB;
|
96 |
margin-top: 0;
|
97 |
}
|
|
|
98 |
.feature p {
|
99 |
font-size: 16px;
|
100 |
color: #333;
|