-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (87 loc) · 2.95 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FuzzingLabs LinkTree</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
display: flex;
/* This line was missing */
justify-content: center;
/* Centers container horizontally */
align-items: center;
/* Centers container vertically */
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #121212, #17181A, #202125);
font-family: 'Poppins', sans-serif;
color: white;
}
.container {
text-align: center;
padding: 50px;
border-radius: 10px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
max-width: 300px;
width: 100%;
/* Make sure it does not exceed the width of the screen */
margin: auto;
/* This is fine, but unnecessary with flexbox centering */
}
.logo {
width: 80%;
max-width: 250px;
margin: 0 auto 30px;
display: block;
}
a {
display: block;
background: linear-gradient(90deg, hsla(345, 69%, 52%, 1) 0%, hsla(283, 31%, 56%, 1) 44%, hsla(215, 100%, 50%, 1) 100%);
color: white;
padding: 12px 20px;
text-decoration: none;
margin: 15px auto;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
.container {
padding: 20px;
width: auto;
}
.logo {
width: auto;
margin-bottom: 20px;
}
a {
width: auto;
padding: 10px;
margin: 10px auto;
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="container">
<img src="./logo.png" alt="Logo" class="logo">
<div>
<a href="https://twitter.com/FuzzingLabs" target="_blank">X</a>
<a href="https://fr.linkedin.com/company/fuzzinglabs" target="_blank">LinkedIn</a>
<a href="https://github.com/fuzzinglabs" target="_blank">Github</a>
<a href="https://fuzzinglabs.com/" target="_blank">Website</a>
<a href="/news_ai" target="_blank">News AI Security</a>
<a href="mailto:[email protected]">Email</a>
</div>
</div>
</body>
</html>