-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
97 lines (86 loc) · 3.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Obrigado!</title>
<style>
/* Corpo da página */
body {
background: linear-gradient(to bottom, #000000, #00020f);
font-family: 'Arial', Helvetica, sans-serif;
color: whitesmoke;
text-align: center;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
/* Imagem */
img {
max-width: 80%;
height: auto;
margin-bottom: 20px;
}
/* Títulos e textos */
h1 {
font-size: 2.5rem;
color: #ff0000;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
h2 {
font-size: 1.2rem;
line-height: 1.8;
margin: 10px 20px;
color: #cccccc;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
/* Responsividade */
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
h2 {
font-size: 1rem;
}
}
@media (max-width: 480px) {
h1 {
font-size: 1.5rem;
}
h2 {
font-size: 0.9rem;
}
img {
max-width: 100%;
}
}
</style>
<script>
// URL de redirecionamento
const redirectUrl = "https://nuvemazul.org/index2.html"; // Substitua pela URL desejada
// Função de redirecionamento
function redirectToSite() {
window.location.href = redirectUrl;
}
// Configurar o temporizador de 15 segundos
setTimeout(redirectToSite, 30000);
// Adicionar evento de clique para redirecionar imediatamente
document.addEventListener("click", redirectToSite);
</script>
</head>
<body>
<img src="https://raw.githubusercontent.com/slayerkk/NuvemAzul/refs/heads/master/img/logo.png" alt="Logo Nuvem Azul">
<h1>O projeto Nuvem Azul foi encerrado.</h1>
<h1>O site continuará no ar e operando normalmente até abril de 2025!</h1>
<br>
<h2>Nuvem Azul foi um reflexo de mim. O meu objetivo, eu cumpri. Infelizmente, não tenho mais cabeça para manter o projeto. Eu amo ele de verdade, e quero agradecer a cada um que está lendo esta mensagem neste exato momento. Vocês fizeram parte da minha vida, e eu aprendi muito com cada um de vocês.</h2>
<h2>Cada conquista... Vou lembrar de tudo com muito carinho, de verdade. A Nuvem Azul, até o momento, foi o projeto da minha vida. Mas tudo que tem um começo, tem um fim. Não estou finalizando apenas o projeto Nuvem Azul, mas todos dos quais faço parte atualmente. E, sinceramente, muito obrigado por tudo.</h2>
<br><br>
<h2>Slayer - Fundador da Nuvem Azul</h2>
</body>
</html>