File size: 2,897 Bytes
167c640
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9fae04f
167c640
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9fae04f
 
 
167c640
 
 
9fae04f
 
167c640
 
 
9fae04f
 
167c640
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3afe6fc
167c640
 
3afe6fc
 
167c640
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9fae04f
 
167c640
 
 
9fae04f
167c640
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b5dd9b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167c640
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b5dd9b3
 
 
 
 
 
3afe6fc
 
 
 
167c640
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
:root {
	--primary-color: #2D3748;
	--secondary-color: #4A5568;
	--accent-color: #4299E1;
	--background-color: #F7FAFC;
	--card-background: #FFFFFF;
	--text-color: #1A202C;
	--border-radius: 8px;
	--spacing-unit: 1rem;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--background-color);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem var(--spacing-unit);
}

header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem 0;
}

h1 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.subtitle {
	font-size: 1.25rem;
	color: var(--secondary-color);
}

section {
	background: var(--card-background);
	border-radius: var(--border-radius);
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

h2 {
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-size: 1.75rem;
}

h3 {
	color: var(--secondary-color);
	margin: 1.5rem 0 1rem;
	font-size: 1.25rem;
}

.video-container {
	width: 100%;
	aspect-ratio: 16/9;
	background: #EDF2F7;
	border-radius: var(--border-radius);
	overflow: hidden;
	margin-bottom: 1rem;
}

.video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.instructions {
	background: #F8FAFC;
	border-radius: var(--border-radius);
	padding: 1.5rem;
}

pre {
	background: #2D3748;
	color: #E2E8F0;
	padding: 1rem;
	border-radius: var(--border-radius);
	overflow-x: auto;
	margin: 1rem 0;
}

code {
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
	font-size: 0.9rem;
}

ul {
	list-style-position: inside;
	margin-left: 1rem;
}

li {
	margin-bottom: 0.5rem;
}

footer {
	text-align: center;
	padding: 2rem 0;
	color: var(--secondary-color);
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: #2B6CB0;
}

.footer-links {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid #E2E8F0;
}

.footer-links h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.footer-links li {
	margin: 0;
}

.footer-links a {
	color: var(--secondary-color);
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-links a:hover {
	color: var(--accent-color);
}

@media (max-width: 768px) {
	.container {
		padding: 1rem;
	}

	h1 {
		font-size: 2rem;
	}

	section {
		padding: 1.5rem;
	}

	pre {
		padding: 0.75rem;
	}

	.footer-links ul {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
}

.video-placeholder {
	display: none;
}