-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (68 loc) · 2.31 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="image/png" sizes="16x16" rel="icon" href="icons8-magic-book-flat-16.png">
<link type="image/png" sizes="32x32" rel="icon" href="icons8-magic-book-flat-32.png">
<link type="image/png" sizes="96x96" rel="icon" href="icons8-magic-book-flat-96.png">
<title>Auf der Suche nach der verlorenen Prompt</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Mystery+Quest&display=swap" rel="stylesheet">
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: url('introBackground.jpeg') no-repeat center center fixed;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Mystery Quest', serif;
color: white;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.container {
text-align: center;
background: rgba(0, 0, 0, 0.6);
padding: 20px 40px;
border-radius: 10px;
}
h1 {
font-size: 3em;
margin-bottom: 0.5em;
}
p {
font-family: 'Mystery Quest', monospace;
font-size: 1.2em;
margin-top: 0;
}
.start-button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
font-size: 1.5em;
color: #FFD700;
background: #8B0000;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
}
.start-button:hover {
background: #DAA520;
}
</style>
</head>
<body>
<div class="container">
<h1>Auf der Suche nach der verlorenen Prompt</h1>
<p>Meistere die dunkle Kunst des Prompt-Designs</p>
<p>Finde die zehn Passwörter für die verschlossenen Tore!</p>
<p>Ein Spiel von Nils Erich</p>
<p>Lizenz: <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a></p>
<a href="game.html" class="start-button">Spiel starten!</a>
</div>
</body>
</html>