-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
131 lines (113 loc) · 2.03 KB
/
style.css
File metadata and controls
131 lines (113 loc) · 2.03 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
/* Reset some default browser styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #f3f4f6;
color: #1f2937;
line-height: 1.6;
}
/* Header Styles */
header {
background-color: #1e3a8a;
color: white;
padding: 20px;
text-align: center;
}
header h1 {
font-weight: 600;
font-size: 2rem;
}
/* Hero Section Styles */
.hero {
display: flex;
align-items: center;
justify-content: center;
height: 80vh;
background: url('https://source.unsplash.com/1600x900/?tech,cloud') no-repeat center/cover;
color: white;
text-align: center;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 10px;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 20px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.btn {
background-color: #4f46e5;
color: white;
padding: 12px 24px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #4338ca;
}
/* Features Section Styles */
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 40px;
margin: 0 auto;
max-width: 1200px;
}
.feature-card {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.feature-card h3 {
margin-bottom: 10px;
font-size: 1.5rem;
}
.feature-card p {
font-size: 1rem;
color: #6b7280;
}
/* Footer Styles */
footer {
background-color: #1e293b;
color: white;
text-align: center;
padding: 10px;
position: relative;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
font-size: 0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
.btn {
font-size: 0.9rem;
padding: 10px 20px;
}
}