-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathintro-luck.html
83 lines (83 loc) · 3.26 KB
/
intro-luck.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TEDx Alchemical Flight Game</title>
<link rel="stylesheet" href="intro-styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Press+Start+2P&display=swap" rel="stylesheet">
<style>
.button-container {
display: flex;
justify-content: flex-end;
width: 100%;
margin-top: 50px;
}
.nav-button {
display: block;
margin: 50px auto;
padding: 15px 30px;
background-color: black;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 1.2em;
font-weight: bold;
text-align: center;
text-decoration: none;
width: fit-content;
transition: background-color 0.3s, color 0.3s;
margin-right: 20px;
}
.nav-button:hover {
background-color: red;
color: white;
}
@media (max-width: 600px) {
.nav-button {
padding: 12px 25px;
font-size: 1em;
border-radius: 6px;
margin-right: 10px;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Welcome to the tedx alchemy speaker reveal game</h1>
</header>
<section class="intro">
<h2>Game Introduction</h2>
<p>
Take flight in a world where transformation is key. Guide your bird—a metaphor for the human spirit—through an ever-shifting landscape. Inspired by alchemy, each gate you pass symbolizes a stage of self-evolution, a step toward mastering the balance between chaos and harmony.
Beware: hesitation leads to a fall, while perfect rhythm allows transcendence. How far can you soar in your journey of transformation?
</p>
</section>
<section class="rules">
<h2>Game Rules</h2>
<ul>
<li>Tap or click to keep your bird afloat—each flap fuels your ascent.</li>
<li>Navigating through narrow gaps requires precision and control, much like refining raw matter into gold.</li>
<li>Each successful passage represents an alchemical stage—your progress is a mark of mastery.</li>
<li>Colliding with obstacles signifies imbalance—recalibrate and try again!</li>
<li>Fly as far as possible to complete your metamorphosis and embrace creative alchemy!</li>
</ul>
</section>
<section class="prize">
<h2>Exciting Prize!</h2>
<p>
Share your game score on Instagram and tag <strong style="color: aqua;">@tedxnitksurathkal</strong> for a chance to win a prize! Engage with TEDx and join in the mystery reveal!
</p>
</section>
<footer>
<a href="./index-age.html" class="play-btn">Play the Game</a>
</footer>
</div>
<div class="button-container">
<a href="/" class="nav-button">Home</a>
</div>
</body>
</html>