-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (87 loc) · 1.59 KB
/
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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* style.css */
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
line-height: 1.6;
padding: 20px;
}
/* Container Styling */
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 25%;
}
/* Header Section */
header h1 {
font-size: 2.5em;
color: #003366;
margin-bottom: 10px;
text-align: center;
}
header h3 {
font-size: 1.2em;
color: #666;
text-align: center;
margin-bottom: 20px;
}
/* Section Styling */
section {
margin: 20px 0;
}
section h2 {
font-size: 1.8em;
color: #003366;
margin-bottom: 10px;
}
section p {
font-size: 1.1em;
color: #555;
margin-bottom: 15px;
}
/* Links Styling */
a {
color: #0056b3;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #004494;
text-decoration: underline;
}
/* Learn More Button */
a h2 {
display: inline-block;
background-color: #003366;
color: #ffffff;
padding: 10px 20px;
border-radius: 5px;
text-align: center;
font-size: 1.4em;
}
a h2:hover {
background-color: #002244;
}
/* Footer Styling */
footer {
text-align: center;
font-size: 0.9em;
color: #777;
margin-top: 30px;
}