-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteam.html
599 lines (558 loc) · 25.5 KB
/
team.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
<!-- Note, this is a template so that anyone can make dozens of more VN pages in the future by copying and pasting this code around -Happiness+ -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Meet The Team</title>
<!-- Load jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<!-- MDB icon -->
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" as="style" onload="this.rel='stylesheet'">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" />
<!-- uncomment when told to, I don't like bebas nue right here -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;300&display=swap" rel="stylesheet">
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" />
<!-- logos -->
<link rel="apple-touch-icon" sizes="57x57" href="img/logos/apple-icon-57x57.webp">
<link rel="apple-touch-icon" sizes="60x60" href="img/logos/apple-icon-60x60.webp">
<link rel="apple-touch-icon" sizes="72x72" href="img/logos/apple-icon-72x72.webp">
<link rel="apple-touch-icon" sizes="76x76" href="img/logos/apple-icon-76x76.webp">
<link rel="apple-touch-icon" sizes="114x114" href="img/logos/apple-icon-114x114.webp">
<link rel="apple-touch-icon" sizes="120x120" href="img/logos/apple-icon-120x120.webp">
<link rel="apple-touch-icon" sizes="144x144" href="img/logos/apple-icon-144x144.webp">
<link rel="apple-touch-icon" sizes="152x152" href="img/logos/apple-icon-152x152.webp">
<link rel="apple-touch-icon" sizes="180x180" href="img/logos/apple-icon-180x180.webp">
<link rel="icon" type="image/webp" sizes="192x192" href="img/logos/android-icon-192x192.webp">
<link rel="icon" type="image/webp" sizes="32x32" href="img/logos/favicon-32x32.webp">
<link rel="icon" type="image/webp" sizes="96x96" href="img/logos/favicon-96x96.webp">
<link rel="icon" type="image/webp" sizes="16x16" href="img/logos/favicon-16x16.webp">
<link rel="manifest" href="manifest.json">
<!-- Open graph stuff -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Watercress Studios"/>
<meta property="og:description" content="We are the largest freeware Visual Novel studio in the North America!"/>
<meta property="og:url" content="https://watercressstudios.com/"/>
<meta property="og:image" content="https://watercressstudios.com/img/Logo.webp" />
<meta property="og:site_name" content="Watercress" />
<!-- Twitter card stuff -->
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Watercress Studios"/>
<meta name="twitter:url" content="https://watercressstudios.com"/>
<meta name="twitter:description" content="The Largest Visual Novel Studio in USA"/>
<meta name="twitter:site" content="@TeamWatercress"/>
<meta name="twitter:image" content="https://watercressstudios.com/img/Logo.webp"/>
<meta name="twitter:creator" content="@Happinessplus__"/>
<!-- Custom -->
<!-- <link rel="stylesheet" href="css/main.css"> -->
</head>
<body>
<header>
<nav class="navbar navbar-light" style="
background: rgba(255, 255, 255, 0.1);
/* border-radius: 16px; */
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(2.7px);
-webkit-backdrop-filter: blur(2.7px);
/* border: 1px solid rgba(255, 255, 255, 0.3); */
"
>
<div class="container-fluid">
<!-- switch to data lazy once I get lazy loading -->
<img src="img/Logo.webp" alt="Watercress Studios" height="50px" width="50px">
<h2 style="color: white; font-family: 'Bebas Neue', sans-serif;">Watercress</h2>
<button class="navbar-toggler" type="button" data-mdb-toggle="collapse" style="color: #3777e9 ;"
data-mdb-target="#navbarToggleExternalContent" aria-controls="navbarToggleExternalContent"
aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
</div>
</nav>
<!-- Remember this blue, style="background: #475cfa;" -->
<div class="collapse" style="
background: rgba(255, 255, 255, 0.1);
/* border-radius: 16px; */
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(2.7px);
-webkit-backdrop-filter: blur(2.7px);
/* border: 1px solid rgba(255, 255, 255, 0.3); */
" id="navbarToggleExternalContent">
<div class="shadow-3 p-4">
<button class="btn btn-link btn-block m-0 border-bottom"><a href="index.html">Home</a></button>
<button class="btn btn-link btn-block m-0 border-bottom"><a href="aboutus.html">About Us</button>
<button class="btn btn-link btn-block m-0 border-bottom"><a href="avitus.html">Avitus</a></button>
<button class="btn btn-link btn-block m-0 border-bottom"> <a href="gameslist.html">Games</a></button>
</div>
</div>
</header>
<video loop autoplay style="position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
z-index: -1;">
<source src="nightbackground.webm" type="video/webm">
</video>
<section id="intro" class="container text-center" style="color: white;">
<h1 class="text-center" style="padding: 2%; color: white;">Meet The Team</h1>
<hr>
<p>Watercress is a 50+ person studio that is spread across the globe. Every member is important and every bit of labor is valuable.</p>
</section>
<section id="selection" >
<!-- Pills navs -->
<ul class="nav nav-pills mb-3" id="ex1" role="tablist"style="padding-left: 10%; padding-right: 10%;">
<li class="nav-item" role="presentation">
<a
class="glass btn btn-primary btn-lg m-2 ripple hoverable active"
id="ex1-tab-1"
data-mdb-toggle="pill"
href="#ex1-pills-1"
role="tab"
aria-controls="ex1-pills-1"
aria-selected="true"
>Leadership</a
>
</li>
<li class="nav-item" role="presentation">
<a
class="glass btn btn-primary btn-lg m-2 ripple hoverable"
id="ex1-tab-2"
data-mdb-toggle="pill"
href="#ex1-pills-2"
role="tab"
aria-controls="ex1-pills-2"
aria-selected="false"
>Writers</a
>
</li>
<li class="nav-item" role="presentation">
<a
class="glass btn btn-primary btn-lg m-2 ripple hoverable"
id="ex1-tab-3"
data-mdb-toggle="pill"
href="#ex1-pills-3"
role="tab"
aria-controls="ex1-pills-3"
aria-selected="false"
>Artists</a
>
</li>
<li class="nav-item" role="presentation">
<a
class="glass btn btn-primary btn-lg m-2 ripple hoverable"
id="ex1-tab-4"
data-mdb-toggle="pill"
href="#ex1-pills-4"
role="tab"
aria-controls="ex1-pills-4"
aria-selected="false"
>Coders</a
>
</li>
<li class="nav-item" role="presentation">
<a
class="glass btn btn-primary btn-lg m-2 ripple hoverable"
id="ex1-tab-6"
data-mdb-toggle="pill"
href="#ex1-pills-6"
role="tab"
aria-controls="ex1-pills-6"
aria-selected="false"
>Musicians</a
>
</li>
<li class="nav-item" role="presentation">
<a
class="glass btn btn-primary btn-lg m-2 ripple hoverable"
id="ex1-tab-5"
data-mdb-toggle="pill"
href="#ex1-pills-5"
role="tab"
aria-controls="ex1-pills-5"
aria-selected="false"
>Voice talent</a
>
</li>
</ul>
</section>
<!-- Pills navs -->
<!-- Pills content -->
<div class="tab-content" id="ex1-content">
<div
class="tab-pane fade show active"
id="ex1-pills-1"
role="tabpanel"
aria-labelledby="ex1-tab-1"
>
<section id="leadership" class="container">
<h2 class="fw-bold text-center" style="padding: 2%; color: white;">Studio Leadership</h2>
<hr class="m-0"/>
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="scene scene--card">
<div class="card1 card h-100">
<img
src="sanne.webp"
class="card-img-top"
alt="Headshot anime profile picture of studio director, Wolf"
/>
<div class="card__face card__face--front">
<div class="card-body">
<h2 class="fw-bold text-center">Wolf</h2>
<h2 class="text-center">Studio Director/CEO</h2>
<hr>
<h4>Promiment Releases:</h4>
<h6>Our Home., Palinurus, Cautionary Tale, Fare Thee Well, A Field of Flowers and Stars</h6>
<a href="https://twitter.com/TeamWatercress" class="fab1 ripple fab fa-twitter"></a>
<a href="" class="fab1 ripple fab fa-discord"></a>
<a href="" class="fab1 ripple fab fa-twitch"></a>
<h5>Click on card to learn more</h5>
</div>
</div>
<div class="card__face card__face--back">
<div class="card-body">
<h3 class="card-title text-center">Background</h3>
<hr>
<p class="member-description">Tristan "Wolf" Barber joined Watercress in 2014, a month after the studio's founding, quickly becoming both a Lead Writer and the Studio Director.
As CEO, he was responsible for the studio's incorporation in 2017.</p><br>
<button type="button" class="btn btn-secondary btn-rounded"><a href="memberbio.html">Learn More</a></button>
</div>
</div>
</div>
</div>
</div>
<!-- note: this design breaks down at 768 pixels wide. -->
<div class="col" style="margin-top: 100%;">
<div class="scene scene--card">
<div class="card1 card h-100">
<img
src="img/male3.webp"
class="card-img-top"
alt="Headshot male template profile picture of CFO and Chief Marketing Officer, Alch"
/>
<div class="card__face card__face--front">
<div class="card-body">
<h2 class="fw-bold text-center">Alch</h2>
<h2 class="text-center">CFO and Chief Marketing Officer</h2>
<hr>
<h4>Promiment Releases:</h4>
<h6>Our Home., Palinurus, Cautionary Tale, Fare Thee Well, A Field of Flowers and Stars</h6>
<a href="https://twitter.com/TeamWatercress" class="fab1 ripple fab fa-twitter"></a>
<a href="" class="fab1 ripple fab fa-discord"></a>
<a href="" class="fab1 ripple fab fa-twitch"></a>
<h5>Click on card to learn more</h5>
</div>
</div>
<div class="card__face card__face--back">
<div class="card-body">
<h3 class="card-title text-center">Background</h3>
<hr>
<p class="member-description">Tristan "Wolf" Barber joined Watercress in 2014, a month after the studio's founding, quickly becoming both a Lead Writer and the Studio Director.
As CEO, he was responsible for the studio's incorporation in 2017.</p><br>
<button type="button" class="btn btn-secondary btn-rounded"><a href="memberbio.html">Learn More</a></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="ex1-pills-2" role="tabpanel" aria-labelledby="ex1-tab-2">
<h2 class="fw-bold text-center" style="padding: 2%; color: white;">Writing Department</h2>
<hr class="m-0"/>
<div class="col container">
<div class="scene scene--card">
<div class="card1 card h-100">
<img
src="img/male3.webp"
class="card-img-top"
alt="Headshot male template profile picture of Writing Director, Leaty"
/>
<div class="card__face card__face--front">
<div class="card-body">
<h2 class="fw-bold text-center">Leaty</h2>
<h2 class="text-center">Writing Director</h2>
<hr>
<h4>Promiment Releases:</h4>
<h6>Our Home., Palinurus, Cautionary Tale, Fare Thee Well, A Field of Flowers and Stars</h6>
<a href="https://twitter.com/TeamWatercress" class="fab1 ripple fab fa-twitter"></a>
<a href="" class="fab1 ripple fab fa-discord"></a>
<a href="" class="fab1 ripple fab fa-twitch"></a>
<h5>Click on card to learn more</h5>
</div>
</div>
<div class="card__face card__face--back">
<div class="card-body">
<h3 class="card-title text-center">Background</h3>
<hr>
<p class="member-description">Tristan "Wolf" Barber joined Watercress in 2014, a month after the studio's founding, quickly becoming both a Lead Writer and the Studio Director.
As CEO, he was responsible for the studio's incorporation in 2017.</p><br>
<button type="button" class="btn btn-secondary btn-rounded"><a href="memberbio.html">Learn More</a></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="ex1-pills-3" role="tabpanel" aria-labelledby="ex1-tab-3">
<h2 class="fw-bold text-center" style="padding: 2%; color: white;">Art Department</h2>
<hr class="m-0"/>
<div class="col container" >
<div class="scene scene--card">
<div class="card1 card h-100">
<img
src="img/female1.webp"
class="card-img-top"
alt="Headshot female template profile picture of Art Director, Draz"
/>
<div class="card__face card__face--front">
<div class="card-body">
<h2 class="fw-bold text-center">Draz</h2>
<h2 class="text-center">Art Director</h2>
<hr>
<h4>Promiment Releases:</h4>
<h6>Our Home., Palinurus, Cautionary Tale, Fare Thee Well, A Field of Flowers and Stars</h6>
<a href="https://twitter.com/TeamWatercress" class="fab1 ripple fab fa-twitter"></a>
<a href="" class="fab1 ripple fab fa-discord"></a>
<a href="" class="fab1 ripple fab fa-twitch"></a>
<h5>Click on card to learn more</h5>
</div>
</div>
<div class="card__face card__face--back">
<div class="card-body">
<h3 class="card-title text-center">Background</h3>
<hr>
<p class="member-description">Tristan "Wolf" Barber joined Watercress in 2014, a month after the studio's founding, quickly becoming both a Lead Writer and the Studio Director.
As CEO, he was responsible for the studio's incorporation in 2017.</p><br>
<button type="button" class="btn btn-secondary btn-rounded"><a href="memberbio.html">Learn More</a></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="ex1-pills-4" role="tabpanel" aria-labelledby="ex1-tab-4">
<h2 class="fw-bold text-center" style="padding: 2%; color: white;">Programming Department</h2>
<hr class="m-0"/>
<div class="col container">
<div class="scene scene--card">
<div class="card1 card h-100">
<img
src="img/male3.webp"
class="card-img-top"
alt="Headshot male template profile picture of Director of Software Engineering, Happiness+"
/>
<div class="card__face card__face--front">
<div class="card-body">
<h2 class="fw-bold text-center">Happiness+</h2>
<h2 class="text-center">Director of Software Engineering</h2>
<hr>
<h4>Promiment Releases:</h4>
<h6>Our Home., Palinurus, Cautionary Tale, Fare Thee Well, A Field of Flowers and Stars</h6>
<a href="https://twitter.com/TeamWatercress" class="fab1 ripple fab fa-twitter"></a>
<a href="" class="fab1 ripple fab fa-discord"></a>
<a href="" class="fab1 ripple fab fa-twitch"></a>
<h5>Click on card to learn more</h5>
</div>
</div>
<div class="card__face card__face--back">
<div class="card-body">
<h3 class="card-title text-center">Background</h3>
<hr>
<p class="member-description">Tristan "Wolf" Barber joined Watercress in 2014, a month after the studio's founding, quickly becoming both a Lead Writer and the Studio Director.
As CEO, he was responsible for the studio's incorporation in 2017.</p><br>
<button type="button" class="btn btn-secondary btn-rounded"><a href="memberbio.html">Learn More</a></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="ex1-pills-5" role="tabpanel" aria-labelledby="ex1-tab-5">
<h2 class="fw-bold text-center" style="padding: 2%; color: white;">Studio Leadership</h2>
<hr class="m-0"/>
<div class="col container">
<div class="scene scene--card">
<div class="card1 card h-100">
<img
src="img/male3.webp"
class="card-img-top"
alt="Headshot male template profile picture of Director of Voice Talent, Sandra"
/>
<div class="card__face card__face--front">
<div class="card-body">
<h2 class="fw-bold text-center">Sandra</h2>
<h2 class="text-center">Director of Voice Talent</h2>
<hr>
<h4>Promiment Releases:</h4>
<h6>Our Home., Palinurus, Cautionary Tale, Fare Thee Well, A Field of Flowers and Stars</h6>
<a href="https://twitter.com/TeamWatercress" class="fab1 ripple fab fa-twitter"></a>
<a href="" class="fab1 ripple fab fa-discord"></a>
<a href="" class="fab1 ripple fab fa-twitch"></a>
<h5>Click on card to learn more</h5>
</div>
</div>
<div class="card__face card__face--back">
<div class="card-body">
<h3 class="card-title text-center">Background</h3>
<hr>
<p class="member-description">Tristan "Wolf" Barber joined Watercress in 2014, a month after the studio's founding, quickly becoming both a Lead Writer and the Studio Director.
As CEO, he was responsible for the studio's incorporation in 2017.</p><br>
<button type="button" class="btn btn-secondary btn-rounded"><a href="memberbio.html">Learn More</a></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="ex1-pills-6" role="tabpanel" aria-labelledby="ex1-tab-6">
<h2 class="fw-bold text-center" style="padding: 2%; color: white;">Music Department</h2>
<hr class="m-0"/>
<div class="col container">
<div class="scene scene--card">
<div class="card1 card h-100">
<img
src="img/male3.webp"
class="card-img-top"
alt="Headshot male template profile picture of Director of Music, Paul"
/>
<div class="card__face card__face--front">
<div class="card-body">
<h2 class="fw-bold text-center">Paul</h2>
<h2 class="text-center">Director of Music</h2>
<hr>
<h4>Promiment Releases:</h4>
<h6>Our Home., Palinurus, Cautionary Tale, Fare Thee Well, A Field of Flowers and Stars</h6>
<a href="https://twitter.com/TeamWatercress" class="fab1 ripple fab fa-twitter"></a>
<a href="" class="fab1 ripple fab fa-discord"></a>
<a href="" class="fab1 ripple fab fa-twitch"></a>
<h5>Click on card to learn more</h5>
</div>
</div>
<div class="card__face card__face--back">
<div class="card-body">
<h3 class="card-title text-center">Background</h3>
<hr>
<p class="member-description">Tristan "Wolf" Barber joined Watercress in 2014, a month after the studio's founding, quickly becoming both a Lead Writer and the Studio Director.
As CEO, he was responsible for the studio's incorporation in 2017.</p><br>
<button type="button" class="btn btn-secondary btn-rounded"><a href="memberbio.html">Learn More</a></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Pills content -->
</section>
<style>
button a:hover{
color: black;
}
.btn-secondary a{
color: white !important;
}
.btn-secondary{
background-color: #3dc507;
}
a{
font-weight: bolder;
}
.fab1{
color:unset !important;
}
.fab{
color:white;
font-size: 40px;
padding: 2.5%;
}
.fab.card__face--front{
color: blue !important;
}
.glass:hover{
color: black
}
.glass{
background: rgba(255, 255, 255, 0.1);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(2.5px);
-webkit-backdrop-filter: blur(2.5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
.scene {
perspective: 600px;
}
.card1 {
display: inherit;
transform-style: preserve-3d;
transform-origin: center right;
transition: transform 1s;
}
.card1.is-flipped {
transform: translateX(-100%) rotateY(-180deg);
}
.card__face {
position: fixed;
width: 100%;
border-bottom-left-radius: 0.5em;
border-bottom-right-radius: 0.5em;
/* height: 100%; */
backface-visibility: hidden;
}
.card__face--front {
background-color: white;
color: black !important
}
.card__face--back {
background-color: white;
color: black !important;
transform: rotateY(180deg);
}
</style>
<!-- background-color: #3777e9; -->
<img id="waves" alt="waves" src="please.svg" width="100%">
<footer class="text-lg-start">
<div class="text-center py-4 align-items-center" data-aos="zoom-out-down">
<div id="social-links">
<a href="https://twitter.com/TeamWatercress" role="button" target="_blank" rel="noopener noreferrer nofollow"><i class="fab fa-twitter" aria-hidden="true"></i> <span class="visually-hidden">Twitter</span></a>
<a href="https://github.com/WatercressStudios" role="button" target="_blank" rel="noopener noreferrer nofollow"><i class="fab fa-github" aria-hidden="true"></i> <span class="visually-hidden">Github</span></a>
<a href="https://discord.gg/watercress" role="button" target="_blank" rel="noopener noreferrer nofollow"><i class="fab fa-discord" aria-hidden="true"></i> <span class="visually-hidden">Discord</span></a>
<a href="https://soundcloud.com/watercress-studios" role="button" target="_blank" rel="noopener noreferrer nofollow"><i class="fab fa-soundcloud" aria-hidden="true"></i> <span class="visually-hidden">Soundcloud</span></a>
<a href="https://www.twitch.tv/teamwatercress" role="button" target="_blank" rel="noopener noreferrer nofollow"><i class="fab fa-twitch" aria-hidden="true"></i> <span class="visually-hidden">Twitch</span></a>
<a href="https://www.reddit.com/r/TeamWatercress/" role="button" target="_blank" rel="noopener noreferrer nofollow"><i class="fab fa-reddit" aria-hidden="true"></i> <span class="visually-hidden">Reddit</span></a>
<a href="https://store.steampowered.com/developer/Watercress" role="button" target="_blank" rel="noopener noreferrer nofollow"><i class="fab fa-steam" aria-hidden="true"></i> <span class="visually-hidden">Steam</span></a>
<a href="https://watercress.itch.io/" role="button" target="_blank" rel="noopener noreferrer nofollow"><i class="fab fa-itch-io" aria-hidden="true"></i> <span class="visually-hidden">Itch.io</span></a>
</div>
<div id="copyright">
<a href="privacypolicy.html">Privacy Policy</a>
<p>Watercress Studios 2014 - 2022</p>
<p>Website by Happiness+, Lee, Wolfborg</p>
</div>
</div>
</footer>
<script>
// var cards = document.getElementsByClassName('card');
// card.addEventListener( 'click', function() {
// card.classList.toggle('is-flipped');
// });
document.querySelectorAll('.card').forEach(item => {
item.addEventListener('click', function() {
item.classList.toggle('is-flipped');
});
})
</script>
<script type="text/javascript" src="js/mdb.min.js" defer></script>
</body>
</html>