-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (115 loc) · 2.25 KB
/
style.css
File metadata and controls
133 lines (115 loc) · 2.25 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* Global Styles */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #ffffff;
color: #333;
line-height: 1.6;
font-size: 18px; /* Increased font size for better readability */
}
/* Hero Section */
.hero {
text-align: center;
background: linear-gradient(to right, #e0c3fc, #8ec5fc); /* Toned down gradient background */
padding: 60px 20px; /* Added padding */
}
.hero img {
width: 200px;
border-radius: 50%;
border: solid 4px #16213e;
}
.hero h1 {
margin: 20px 0 10px;
color: #16213e;
font-size: 3.5em; /* Increased font size using em */
}
.hero p {
margin: 10px 0 30px;
color: #555;
font-size: 20px; /* Increased font size */
}
.hero button {
background-color: #533483;
color: #fff;
border: none;
border-radius: 10px;
cursor: pointer;
padding: 1em 2em; /* Increased button size using em */
font-size: 1.1em; /* Increased font size using em */
}
.hero button:hover {
background-color: #362056;
}
/* Product Description Section */
.description {
padding: 40px 20px;
text-align: center;
background-color: #ffffff;
margin: 40px auto;
max-width: 950px;
font-size: 1.25em; /* Increased font size */
}
/* How It Works Section */
.how-it-works {
padding: 40px 20px;
background-color: #f7f7f7;
text-align: center;
}
.how-it-works h2 {
margin-top: 0;
margin-bottom: 20px;
color: #0f3460;
font-size: 32px; /* Increased font size */
}
.how-it-works ol {
list-style: decimal;
padding-left: 20px;
max-width: 600px;
margin: 0 auto;
color: #333;
text-align: left;
}
.how-it-works li {
margin-bottom: 15px;
line-height: 1.6;
}
strong {
color: #533483;
}
/* Features Section */
.features {
padding: 20px;
background-color: #ffffff;
text-align: center;
margin: auto;
margin-bottom: 20px;
max-width: 800px;
}
.features h2 {
margin-bottom: 20px;
color: #1a1a2e;
font-size: 32px; /* Increased font size */
}
.features ul {
list-style: none;
padding: 0;
margin: 0;
text-align: left;
color: #333;
}
.features li {
padding: 15px 0;
border-bottom: 1px solid #e0e0e0;
}
.features li strong {
display: block;
margin-bottom: 5px;
}
footer {
background-color: #16213e;
color: #fff;
text-align: center;
padding: 20px 0;
font-size: 0.9em;
}