Jean Louis commited on
Commit
6ba7f39
·
1 Parent(s): 0a28e1c

Wrote header

Browse files
Files changed (1) hide show
  1. header.css +27 -0
header.css ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ margin: 0;
3
+ padding: 20px;
4
+ font-family: Arial, sans-serif;
5
+ background-color: #2c3e50; /* A pleasant darker background */
6
+ color: #ecf0f1; /* Light text for contrast */
7
+ max-width: 800px; /* Limits page width for easy reading */
8
+ margin: 0 auto; /* Centers the content */
9
+ line-height: 1.6; /* Improves readability */
10
+ }
11
+
12
+ h1, h2, h3, h4, h5, h6 {
13
+ color: #ecf0f1; /* Ensures headings match text color */
14
+ }
15
+
16
+ a {
17
+ color: #3498db; /* Adds a pop of color for links */
18
+ text-decoration: none;
19
+ }
20
+
21
+ a:hover {
22
+ text-decoration: underline;
23
+ }
24
+
25
+ p {
26
+ margin-bottom: 1em;
27
+ }