-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutstyle.css
More file actions
79 lines (68 loc) · 1.29 KB
/
Copy pathaboutstyle.css
File metadata and controls
79 lines (68 loc) · 1.29 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
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500&display=swap');
body {
font-family: 'Raleway', sans-serif;
line-height: 1.8;
margin: 0;
padding: 0;
}
/* Navbar styles */
.navbar {
background-color: black;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
}
.logo {
font-weight: 200;
letter-spacing: 4px;
margin: 0;
}
.nav-items {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.nav-item {
margin-left: 20px;
padding: 15px;
}
.nav-item a {
color: white;
text-decoration: none;
}
/* General container styles */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* About section styles */
.about-section {
padding: 100px 0;
text-align: center;
}
.about-content {
max-width: 800px;
margin: 0 auto;
}
.section-heading {
font-size: 36px;
margin-bottom: 30px;
color: #333;
}
.about-section p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 20px;
color: #666;
}
/* Footer styles */
.footer {
background-color: #000000;
color: white;
text-align: center;
padding: 20px 0;
}