-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
84 lines (70 loc) · 1.21 KB
/
stylesheet.css
File metadata and controls
84 lines (70 loc) · 1.21 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
80
81
82
83
84
body {
font-family: Arial, sans-serif;
color: #333;
margin: 0;
padding: 0;
background-color: #fff;
}
header {
background-color: #6e8fac;
color: #fff;
text-align: center;
padding: 20px 0;
}
#logo img {
width: 100px; /* Adjust as needed */
height: auto;
}
h1 {
margin: 0;
font-size: 2em;
}
#intro-video img {
max-width: 100%;
height: auto;
cursor: pointer; /* Indicates clickable */
}
section {
padding: 20px 40px;
text-align: center;
}
section h2 {
color: #6e8fac;
font-size: 1.5em;
margin-bottom: 10px;
}
section p, section ul {
text-align: left;
margin: 10px auto;
max-width: 800px; /* Ensures readability */
}
section ul li {
list-style-type: disc;
margin-left: 40px;
}
footer {
background-color: #f2f2f2;
color: #333;
text-align: center;
padding: 10px 0;
font-size: 0.8em;
}
footer a {
color: #6e8fac;
text-decoration: none;
margin: 0 10px;
}
footer a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
body {
font-size: 14px;
}
header, section, footer {
padding: 20px 10px;
}
section ul li {
margin-left: 20px;
}
}