-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (71 loc) · 1.22 KB
/
styles.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
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
/* General Styles */
body {
background-color: #000; /* Black background */
color: #fff; /* White text */
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center; /* Center all text */
}
/* Header Styling */
header {
background-color: #222;
padding: 1.5rem 0;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
font-size: 1.2rem;
margin-top: 0.5rem;
}
nav {
margin: 1rem 0;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 1rem;
font-size: 1.1rem;
}
nav a:hover {
text-decoration: underline;
}
/* Section Styling */
section {
padding: 2rem 1rem;
border-bottom: 1px solid #444;
}
h2, h3 {
margin-bottom: 1rem;
}
a {
color: #4da8da;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Social Links Styling */
.social-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 1rem;
}
.social-links a {
color: #fff;
font-size: 2rem;
transition: color 0.3s ease;
}
.social-links a:hover {
color: #4da8da; /* Light blue hover effect */
}
/* Footer Styling */
footer {
background-color: #222;
color: #aaa;
padding: 1rem 0;
margin-top: 1rem;
}