-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
754 lines (704 loc) · 25.8 KB
/
index.html
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Take your space</title>
<meta name="description" content="Mexican graffiti and urban art" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="theme-color" content="#111" />
<meta name="msapplication-TileColor" content="#111" />
<meta property="og:title" content="Take your space" />
<meta property="og:description" content="Mexican graffiti and urban art" />
<meta property="og:image" content="/images/preview.en.1200x630.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image" content="/images/preview.en.630x630.jpg" />
<meta property="og:image:width" content="630" />
<meta property="og:image:height" content="630" />
<style>
body {
background-color: #000;
color: #ddd;
margin: 0;
font-family: Tahoma, sans-serif;
}
header {
width: 100%;
margin-bottom: 3%;
}
main {
width: 96%;
margin: 0 auto;
font-size: 1.1em;
text-align: center;
}
.controls {
width: 96%;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
margin: 1em auto 1.6em;
}
.controls__left {
flex: 0 1 10%;
}
.controls__center {
text-align: center;
}
.controls__right {
flex: 0 0 10%;
display: inline-flex;
align-items: center;
justify-content: right;
gap: 0.9em;
}
.trailer {
width: 100%;
max-height: 100vh;
aspect-ratio: 16 / 9;
}
nav ul {
margin: 0;
padding: 0;
display: flex;
overflow: hidden;
flex-wrap: wrap;
list-style: none;
}
/* Insert separator between items unless wrapped */
nav li {
margin-right: 2px;
position: relative;
}
nav li:after {
content: '';
right: 100%;
top: 0.9em;
width: 1px;
height: 0.6em;
background-color: #333;
margin-right: 1px;
display: inline-block;
position: absolute;
transform: translateY(-50%);
}
nav a {
padding: 0 0.6em;
font-size: 1.3em;
}
a {
color: #aaa;
text-decoration: none;
}
header a {
color: #777;
}
a.selected {
cursor: default;
pointer-events: none;
}
a:not(.selected):hover {
color: #ddd;
}
.icon {
width: 2.3em;
}
.text {
margin: 2.618em auto;
max-width: 1200px;
text-align: center;
}
.text-next {
margin-top: 0.618em !important;
}
.credits {
color: #eee;
font-size: 1.3em;
display: flex;
flex-wrap: nowrap;
justify-content: space-around;
align-items: center;
letter-spacing: 0.05em;
gap: 1em;
}
.credits p {
flex-shrink: 0.5;
}
.festivals p {
margin-block: 0 0.5em;
margin-inline: 0 0.5em;
font-size: 0.9em;
}
.awards {
margin-top: 2.6em;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 13px;
}
.awards picture {
flex: 0 0 auto;
}
.awards picture img {
height: 150px;
}
@media screen and (max-width: 640px) {
.awards picture img {
height: 75px;
}
}
@media screen and (min-width: 641px) and (max-width: 1008px) {
.awards picture img {
height: 100px;
}
}
@media screen and (min-width: 1009px) and (max-width: 1600px) {
.awards picture img {
height: 120px;
}
}
#contact {
font-size: 1.3em;
}
#contact * {
display: none;
}
#contact:before {
content: attr(data-rev);
direction: rtl;
unicode-bidi: bidi-override;
}
#contact:after {
content: '\002e'attr(data-tld);
}
/* Use footer background if screen is high enough to not clash with header */
/*
@media screen and (max-width: 640px) and (min-height: calc((86 + 146)*(100vw/640))) {
body {
background-image: url('/images/footer.640.webp');
}
footer {
min-height: calc(13px + 146 * 100vw / 640);
}
}
@media screen and (min-width: 641px) and (max-width: 1008px) and (min-height: calc((135 + 229)*(100vw/1008))) {
body {
background-image: url('/images/footer.1008.webp');
}
footer {
min-height: calc(13px + 229 * 100vw / 1008);
}
}
@media screen and (min-width: 1009px) and (min-height: calc((258 + 437)*(100vw/1920))) {
body {
background-image: url('/images/footer.1920.webp');
}
footer {
min-height: calc(13px + 437 * 100vw / 1920);
}
}
*/
</style>
</head>
<body>
<div class="container">
<header>
<!-- FIXME: Fix the `100vw - 20px` hack to make page wider when vertical scrollbar is displayed -->
<picture>
<source
srcset="
/images/header.en.640.webp 640w,
/images/header.en.1008.webp 1008w,
/images/header.en.1920.webp 1920w
"
sizes="calc(100vw - 20px)"
type="image/webp"
/>
<source
srcset="
/images/header.en.640.jpg 640w,
/images/header.en.1008.jpg 1008w,
/images/header.en.1920.jpg 1920w
"
sizes="calc(100vw - 20px)"
type="image/jpeg"
/>
<img
src="/images/header.en.1920.jpg"
srcset="
/images/header.en.640.jpg 640w,
/images/header.en.1008.jpg 1008w,
/images/header.en.1920.jpg 1920w
"
sizes="calc(100vw - 20px)"
alt="Take your space | Mexican graffiti and urban art"
/>
</picture>
<div class="controls">
<div class="controls__left"> </div>
<div class="controls__center">
<nav>
<ul>
<li><a class="selected" href="/">english</a></li>
<li><a href="/es">español</a></li>
<li><a href="/cs">česky</a></li>
</ul>
</nav>
</div>
<div class="controls__right">
<a
id="contact"
rel="nofollow"
href="https://mailhide.io/e/DMr7hydt"
onclick="window.open('https://mailhide.io/e/DMr7hydt','Show Email','width=500,height=500,popup'); return false;"
target="Show Email"
data-rev="liame@ayaka"
data-tld="cz"
><span>Karolína Alvarez</span></a
>
<a
title="Instagram"
class="icon"
href="https://instagram.com/ganatuespacio"
target="_blank"
>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path
fill="currentColor"
d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"
/>
</svg>
</a>
<a
title="Facebook page"
class="icon"
href="https://facebook.com/ganatuespaciodoc"
target="_blank"
>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path
fill="currentColor"
d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"
/>
</svg>
</a>
</div>
</div>
</header>
<main>
<div class="trailer">
<iframe
src="https://www.youtube-nocookie.com/embed/-MFLoG6FGuw"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
width="100%"
height="100%"
></iframe>
</div>
<div class="awards">
<picture>
<source src="/images/awards/01-brno.webp" type="image/webp" />
<img src="/images/awards/01-brno.jpg" alt="Brno" />
</picture>
<picture>
<source src="/images/awards/02-kosice.webp" type="image/webp" />
<img src="/images/awards/02-kosice.jpg" alt="Košice" />
</picture>
<picture>
<source src="/images/awards/03-rome.webp" type="image/webp" />
<img src="/images/awards/03-rome.jpg" alt="Rome" />
</picture>
<picture>
<source src="/images/awards/04-ukraine.webp" type="image/webp" />
<img src="/images/awards/04-ukraine.jpg" alt="" />
</picture>
<picture>
<source src="/images/awards/05-hamburg.webp" type="image/webp" />
<img src="/images/awards/05-hamburg.jpg" alt="" />
</picture>
<picture>
<source src="/images/awards/06-bucurest.webp" type="image/webp" />
<img src="/images/awards/06-bucurest.jpg" alt="" />
</picture>
<picture>
<source src="/images/awards/07-greece.webp" type="image/webp" />
<img src="/images/awards/07-greece.jpg" alt="" />
</picture>
<picture>
<source src="/images/awards/08-barcelona.webp" type="image/webp" />
<img src="/images/awards/08-barcelona.jpg" alt="" />
</picture>
<picture>
<source src="/images/awards/09-lulea.webp" type="image/webp" />
<img src="/images/awards/09-lulea.jpg" alt="" />
</picture>
<picture>
<source src="/images/awards/10-stockholm.webp" type="image/webp" />
<img src="/images/awards/10-stockholm.jpg" alt="" />
</picture>
<picture>
<source src="/images/awards/11-arizona.webp" type="image/webp" />
<img src="/images/awards/11-arizona.jpg" alt="" />
</picture>
<picture>
<source src="/images/awards/12-bogota.webp" type="image/webp" />
<img src="/images/awards/12-bogota.jpg" alt="" />
</picture>
<picture>
<source src="/images/awards/13-new-york.webp" type="image/webp" />
<img src="/images/awards/13-new-york.jpg" alt="" />
</picture>
<picture>
<source src="/images/awards/14-ukraine.webp" type="image/webp" />
<img src="/images/awards/14-ukraine.jpg" alt="" />
</picture>
</div>
<div class="text">
<div class="credits">
<picture>
<source src="/images/photo-karolina.webp" type="image/webp" />
<img src="/images/photo-karolina.jpg" alt="Karolína Alvarez" />
</picture>
<p>
TAKE YOUR SPACE, 77 min, 2023<br />
direction: Karolína Alvarez<br />
original music: Ondřej Skala / JTNB
</p>
<picture>
<source src="/images/photo-ondrej.webp" type="image/webp" />
<img src="/images/photo-ondrej.jpg" alt="Ondřej Skala" />
</picture>
</div>
<p>
The first feature-length documentary on Mexican graffiti and urban
art was shot over the course of four years without any financial
support from institutions. Based on the coexistence of the community
of Mexican urban artists, independent and free in its expression. It
also extends to the other branches of Mexican hiphop and
skateboarding. The documentary familiarizes with the development of
the movement from its beginnings to the present day with a focus on
its essence of rebellion and resistance. It presents urban arts as a
path of freedom and independence of an individual, confronting the
capitalist system and its attempt to invade our lives and the way we
behave. The film also points to the characteristics of Mexican
counterculture in relation to the resistance of native cultures.
</p>
<p>
Karolína Alvarez is a freelance documentary filmmaker from the Czech
Republic. She graduated in Humanities at Charles University and in
Conceptual Art at the Academy of Arts, Design and Architecture in
Prague. After the fall of the communist dictatorship in Eastern
Europe she started to travel to countries with living native
cultures (Ireland, Siberia, Himalayas, Amazonia, Mexico). From 2018
she focused her attention on urban culture. Karolína is a promoter
of multidisciplinary hiphop projects. She sings and plays guitar,
she leads Sufi dance workshops, she snowboards and runs the Copper
Canyon marathon.
</p>
<p>
Ondřej Skala is a Czech artist focused mainly on fine art, video
art, public space art and performances. He graduated at the Academy
of Arts, Design and Architecture in Prague. He shares together with
his brother Petr Skala the breakcore-ambient music project Jesus
marches on Berlin.
</p>
</div>
<picture>
<source src="/images/tag.webp" type="image/webp" />
<img src="/images/tag.jpg" alt="" />
</picture>
<br />
<picture>
<source src="/images/native.webp" type="image/webp" />
<img src="/images/native.jpg" alt="" />
</picture>
<br />
<picture>
<source
srcset="
/images/artists.600.webp 600w,
/images/artists.900.webp 900w
"
sizes="70vw"
type="image/webp"
/>
<source
srcset="/images/artists.600.jpg 600w, /images/artists.900.jpg 900w"
sizes="70vw"
type="image/jpeg"
/>
<img
src="/images/artists.900.jpg"
srcset="/images/artists.600.jpg 600w, /images/artists.900.jpg 900w"
sizes="70vw"
alt=""
/>
</picture>
<div class="text text-next">
<p>
<a target="_blank" href="https://instagram.com/adrydelrocio"
>@adrydelrocio</a
>,
<a target="_blank" href="https://instagram.com/@alanizart"
>@alanizart</a
>,
<a target="_blank" href="https://instagram.com/@alegriadelprado"
>@alegriadelprado</a
>,
<a target="_blank" href="https://instagram.com/@areuz_">@areuz_</a>,
<a target="_blank" href="https://instagram.com/@aztlanunderground"
>@aztlanunderground</a
>,
<a target="_blank" href="https://instagram.com/@jesusbenitezf"
>@jesusbenitezf</a
>,
<a target="_blank" href="https://instagram.com/@biosisniega"
>@biosisniega</a
>,
<a target="_blank" href="https://instagram.com/@blasto_">@blasto_</a
>,
<a target="_blank" href="https://instagram.com/@chaz_bojorquez"
>@chaz_bojorquez</a
>,
<a target="_blank" href="https://instagram.com/@cixmugre_dmt"
>@cixmugre_dmt</a
>,
<a target="_blank" href="https://instagram.com/@colt1328"
>@colt1328</a
>,
<a target="_blank" href="https://instagram.com/@dangerakoficial"
>@dangerakoficial</a
>,
<a target="_blank" href="https://instagram.com/@dexpierte_colectivo"
>@dexpierte_colectivo</a
>,
<a target="_blank" href="https://instagram.com/@el_vuh">@el_vuh</a>,
<a target="_blank" href="https://instagram.com/@eptosuno"
>@eptosuno</a
>,
<a target="_blank" href="https://instagram.com/@feymwn1_cvs"
>@feymwn1_cvs</a
>,
<a target="_blank" href="https://instagram.com/@_friek">@_friek</a>,
<a target="_blank" href="https://instagram.com/@gatobanton"
>@gatobanton</a
>,
<a target="_blank" href="https://instagram.com/@gilnavor"
>@gilnavor</a
>,
<a target="_blank" href="https://instagram.com/@holookunz"
>@holookunz</a
>,
<a target="_blank" href="https://instagram.com/@horus_tierra"
>@horus_tierra</a
>,
<a target="_blank" href="https://instagram.com/@humone_sf"
>@humone_sf</a
>,
<a target="_blank" href="https://instagram.com/@lapiztola"
>@lapiztola</a
>,
<a target="_blank" href="https://instagram.com/@laryza_garcía"
>@laryza_garcía</a
>,
<a target="_blank" href="https://instagram.com/@letteringmalandro"
>@letteringmalandro</a
>,
<a target="_blank" href="https://instagram.com/@libre_hem"
>@libre_hem</a
>,
<a
target="_blank"
href="https://instagram.com/@mare.advertencia.lirika"
>@mare.advertencia.lirika</a
>,
<a target="_blank" href="https://instagram.com/@maricealmanza"
>@maricealmanza</a
>,
<a target="_blank" href="https://instagram.com/@markogarx"
>@markogarx</a
>,
<a target="_blank" href="https://instagram.com/@maxbarrera"
>@maxbarrera</a
>,
<a target="_blank" href="https://instagram.com/@_mazatli_"
>@_mazatli_</a
>,
<a target="_blank" href="https://instagram.com/@minoz._">@minoz._</a
>,
<a target="_blank" href="https://instagram.com/@mutante_apc"
>@mutante_apc</a
>,
<a target="_blank" href="https://instagram.com/@nobunagalewing"
>@nobunagalewing</a
>,
<a target="_blank" href="https://instagram.com/@raza.de.polvo"
>@raza.de.polvo</a
>,
<a target="_blank" href="https://instagram.com/@ricardoangelesss"
>@ricardoangelesss</a
>,
<a target="_blank" href="https://instagram.com/@rocopachucote"
>@rocopachucote</a
>,
<a target="_blank" href="https://instagram.com/@saidokins"
>@saidokins</a
>,
<a target="_blank" href="https://instagram.com/@saner_edgar"
>@saner_edgar</a
>,
<a target="_blank" href="https://instagram.com/@seherone"
>@seherone</a
>,
<a target="_blank" href="https://instagram.com/@serkofu">@serkofu</a
>,
<a target="_blank" href="https://instagram.com/@shenterismo"
>@shenterismo</a
>,
<a target="_blank" href="https://instagram.com/@sketchoficial"
>@sketchoficial</a
>,
<a target="_blank" href="https://instagram.com/@smitheone"
>@smitheone</a
>,
<a target="_blank" href="https://instagram.com/@spaik45">@spaik45</a
>,
<a target="_blank" href="https://instagram.com/@spanerock"
>@spanerock</a
>,
<a target="_blank" href="https://instagram.com/@stinkfishstink"
>@stinkfishstink</a
>,
<a target="_blank" href="https://instagram.com/@unikbreakers"
>@unikbreakers</a
>,
<a target="_blank" href="https://instagram.com/@yatikafields"
>@yatikafields</a
>,
<a target="_blank" href="https://instagram.com/@yorkhardest"
>@yorkhardest</a
>
</p>
<br />
<br />
<div class="festivals">
<p>
Marzo 17, 2023: San Luis Potosí, Mexico, Al Estilo Femenino
grafiti festival
</p>
<p>
April 21, 2023: Brno International Film Festival, Czech Republic -
Grand Prix Best Feature Documentary
</p>
<p>
April 24, 2023: Kosice International Film Festival, Slovak
Republic - Honorable Mention Feature Documentary
</p>
<p>
April 29, 2023: Belfast, Northern Ireland, Hit the North street
art festival
</p>
<p>
May 12, 2023: Hip Hop Cine Fest, Rome, Italy - Official Selection
Feature Documentary
</p>
<p>
May 2023: Onyko Films Awards, Odessa, Ucraine - Finalist Best
Documentary Feature Film
</p>
<p>
May 31, 2023: Praha, Česká Republika, Kulturní centrum Klubovna -
Povaleč
</p>
<p>July 25, 2023: Bánská Bystrica, Slovensko, Outbreak Europe</p>
<p>
July 2023: Lulea International Film Festival, Sweden - Finalist
Best Debut Documentary
</p>
<p>
July 2023: Athens International Monthly Art Festival, Greece -
Honorable Mention Best Art/Dance Film
</p>
<p>
August 7, 2023: Best International Film Festival, Bucharest,
Romania - Grand Prix Best Documentary
</p>
<p>
Summer edition 2023: Barcelona Indie Awards, Spain - Official
Selection Best Feature Documentary
</p>
<p>
August, 2023: New York Monthly Film Festival, USA - Official
Selection Best Feature Documentary
</p>
<p>
August 17, 2023: Stockholm City Film Festival, Sweden - Winner
Award Best Woman Filmmaker
</p>
<p>
September 3, 2023: Oprto, Portugal - The Worldbattle breaking
competition
</p>
<p>
September 5, 2023: Narrar El Futuro, Colombia, Bogota, Official
Selection Stories of the Future Films
</p>
<p>
September 15, 2023: Golden Sneakers International Hip Hop Film
Festival, Hamburg, Germany<br />
- Grand Prix Best Graffiti Movie
</p>
<p>
September 30, 2023: V.I.Z. Film Fest, Odesa Ucraine - Official
Selection Best Feature Documentary
</p>
<p>
October 19, 2023: Mesa International Film Festival, Arizona, USA -
Official Selection Documentary
</p>
</div>
</div>
</main>
<footer>
<!-- FIXME: Fix the `100vw - 20px` hack to make page wider when vertical scrollbar is displayed -->
<picture>
<source
srcset="
/images/footer.640.webp 640w,
/images/footer.1008.webp 1008w,
/images/footer.1920.webp 1920w
"
sizes="calc(100vw - 20px)"
type="image/webp"
/>
<source
srcset="
/images/footer.640.jpg 640w,
/images/footer.1008.jpg 1008w,
/images/footer.1920.jpg 1920w
"
sizes="calc(100vw - 20px)"
type="image/jpeg"
/>
<img
src="/images/footer.1920.jpg"
srcset="
/images/footer.640.jpg 640w,
/images/footer.1008.jpg 1008w,
/images/footer.1920.jpg 1920w
"
sizes="calc(100vw - 20px)"
alt="Take your space | Mexican graffiti and urban art"
/>
</picture>
</footer>
</div>
</body>
</html>