-
Notifications
You must be signed in to change notification settings - Fork 0
/
secret.html
82 lines (70 loc) · 2.05 KB
/
secret.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>secret</title>
<style>
body {
background-color: black;
color: white;
font-size: 2rem;
font-family: monospace;
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-content: center;
height: 100vh;
position: relative;
overflow: hidden;
}
body>video {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
z-index: -1000;
object-fit: cover;
}
body>img {
position: fixed;
opacity: 0.5;
object-fit: cover;
width: 12rem;
animation: move-linearly 200s linear infinite;
z-index: -10;
left: 70%;
}
@keyframes move-linearly {
from {
transform: rotate(0deg);
left: 70%;
}
to {
transform: rotate(360deg);
left: -30%;
}
}
@media screen and (max-width: 800px) {
html {
font-size: 8px;
}
}
</style>
</head>
<body>
<video src="./resources/img/star_twinkling.mp4" alt="" muted autoplay loop>videoo</video>
<img src="./resources/img/home/astro.png" alt="">
<div class="flexy">
<h1>THE SPACE TOUR 🌠</h1>
<p>"Just as stars are born from cosmic dust, our dreams emerge from the depths of our struggles, lighting up the
vastness of our journey through life." 🌌✨
<br><br>
</p>
<h4>Thanks for playing the game! <img src="https://cdn.discordapp.com/emojis/776520713007661106.gif?size=48" alt=""></h4>
<p>crafted by WEBCRAFTERS 💫</p>
</div>
</body>
</html>