-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (98 loc) · 2.8 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
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MOCA2024</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: url('background.png') #050e2b no-repeat center center fixed;
background-size: cover;
position: relative;
color: #fff;
font-family: 'Arial', sans-serif;
}
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
z-index: 0;
}
.center-box {
position: relative;
z-index: 1;
background-color: rgba(255, 255, 255, 0.05);
border: 2px solid #00ff99; /* neon green */
border-radius: 10px;
padding: 40px;
text-align: center;
width: 300px;
box-shadow: 0 0 15px rgba(0, 255, 153, 0.4);
}
h1 {
margin-bottom: 20px;
font-size: 24px;
}
.btn {
display: block;
margin: 10px 0;
padding: 12px 20px;
text-decoration: none;
color: #0b0d19;
background-color: #00ff99;
border: none;
border-radius: 5px;
font-weight: bold;
font-size: 16px;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #00cc7a;
color: #fff;
}
footer {
position: absolute;
bottom: 20px;
text-align: center;
width: 100%;
font-size: 12px;
color: #666;
}
@media (max-width: 600px) {
.center-box {
width: 80%;
padding: 20px;
}
h1 {
font-size: 20px;
}
.btn {
font-size: 14px;
padding: 10px 15px;
}
}
</style>
</head>
<body>
<div class="center-box">
<h1>MOCA2024</h1>
<a href="https://moca.camp/codice-di-condotta/index.html" class="btn">Codice di condotta</a>
<a href="https://moca.camp/regolamento/index.html" class="btn">Regolamento</a>
<a href="https://discord.gg/JS6jJFUj8S" class="btn">Entra nel server Discord</a>
<a href="https://hackertracker.app/schedule/?conf=MOCA2024" class="btn">Schedule</a>
</div>
</body>
</html>