forked from HariomGupta123/hactoberfest2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (46 loc) · 747 Bytes
/
style.css
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
/* Reset some default browser styles */
body,
h1,
h2,
p {
margin: 0;
padding: 0;
}
/* Basic styling for the header */
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
/* Main content container */
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
/* Style sections */
section {
margin-bottom: 20px;
border: 1px solid #ddd;
padding: 20px;
background-color: #f7f7f7;
}
/* Style headings */
h2 {
font-size: 1.5rem;
color: #333;
margin-bottom: 10px;
}
/* Style paragraphs */
p {
font-size: 1rem;
color: #555;
}
/* Style the footer */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
}