-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsquare-square.html
72 lines (67 loc) · 2.75 KB
/
square-square.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Square Square Challenge | HashVault</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="favicon" href="favicon.ico" type="image/x-icon">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=VT323&display=swap');
body {
font-family: 'Orbitron', sans-serif;
background-color: #0a0a0a;
color: #e0e0e0;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.challenge-container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.challenge-card {
background-color: rgba(31, 41, 55, 0.8);
border-radius: 16px;
border: 1px solid rgba(131, 44, 168, 0.3);
padding: 30px;
backdrop-filter: blur(10px);
}
.glitch-text {
animation: glitch 1s infinite;
}
@keyframes glitch {
2%, 64% { transform: translate(2px, 0) skew(0deg); }
4%, 60% { transform: translate(-2px, 0) skew(0deg); }
62% { transform: translate(0, 0) skew(5deg); }
}
</style>
</head>
<body class="bg-black">
<div class="container mx-auto px-4 py-10">
<div class="text-center mb-10">
<h1 class="text-3xl sm:text-4xl font-bold text-white glitch-text">
Square <span class="text-[#832ca8]">Square</span> Challenge
</h1>
<p class="mt-4 text-gray-300">Have you seen things like this before!</p>
</div>
<div class="challenge-container">
<div class="challenge-card">
<h2 class="text-2xl font-bold text-[#832ca8] mb-6">Challenge Description</h2>
<p class="mt-4 text-gray-300">Have you seen chessboards like this ♟️</p>
<img src="HVQR.png" style="padding-top:5px; width: 40%;border-radius: 10%;" >
<div class="challenge-input mb-6 mt-10">
<div style="background-color: #1a202c; border: 1px solid #4a5568; color: #e0e0e0; padding: 16px; border-radius: 8px; margin-top: 10px;">
<span style="font-weight: bold; color: #48bb78; display: block; margin-bottom: 8px;">Flag Format:</span>
<span>HVFLAG{TH1S_IS_4_FL4G}</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>