-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
48 lines (41 loc) · 987 Bytes
/
main.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
/* General reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #1e1e1e; /* Dark background */
color: #e0e0e0; /* Light text */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
max-width: 600px;
padding: 40px; /* Increased padding for better spacing */
text-align: left;
line-height: 1.8; /* Adjust line spacing for better readability */
}
h1 {
font-size: 32px;
margin-bottom: 20px; /* Increased spacing below the title */
}
h1 span {
font-size: 20px;
color: #53c4d7; /* Accent color for the '*' */
}
p {
margin-bottom: 25px; /* Added consistent spacing between paragraphs */
font-size: 18px; /* Slightly increased font size for paragraphs */
}
a {
color: #53c4d7; /* Accent color for links */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}