-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
91 lines (80 loc) · 2.29 KB
/
404.html
File metadata and controls
91 lines (80 loc) · 2.29 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LP SeuSomelier</title>
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #ffffff;
font-family: 'Inter', sans-serif;
overflow: hidden;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
width: 100%;
height: 100%;
}
#ERROR {
max-width: 90%;
max-height: 70vh;
width: auto;
height: auto;
object-fit: contain;
}
.btn-voltar {
display: inline-block;
margin-top: 30px;
padding: 15px 24px;
background-color: #000;
color: #fff;
text-decoration: none;
border-radius: 50px;
font-size: 16px;
font-weight: 500;
transition: all 0.2s;
animation: pulsar-sombra 2s infinite;
}
@keyframes pulsar-sombra {
0% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
}
70% {
transform: scale(1.05);
box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
}
100% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
}
.btn-voltar:hover {
opacity: 0.9;
background-color: #333;
animation-play-state: paused;
}
@media (max-height: 500px) {
#ERROR { max-height: 50vh; }
.btn-voltar { margin-top: 10px; padding: 8px 16px; }
}
</style>
</head>
<body>
<div class="container">
<img id="ERROR" src="img/nada-para-ver-aqui.jpg" alt="Nada para ver aqui">
<a href="https://y2k.seusomelier.com.br/" class="btn-voltar">ME APERTE 🥺🥺🥺</a>
</div>
</body>
</html>