-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (75 loc) · 2.58 KB
/
Copy pathindex.html
File metadata and controls
81 lines (75 loc) · 2.58 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ambidestry</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #0e0b14;
font-family: 'Segoe UI', sans-serif;
color: #23f7cc;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
/* Fundo SVG animado */
body::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 200%;
height: 200%;
background-color: #ffffff; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='40' viewBox='0 0 50 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2356d7bd' fill-opacity='0.4'%3E%3Cpath d='M40 10L36.67 0h-2.11l3.33 10H20l-2.28 6.84L12.11 0H10l6.67 20H10l-2.28 6.84L2.11 10 5.44 0h-2.1L0 10l6.67 20-3.34 10h2.11l2.28-6.84L10 40h20l2.28-6.84L34.56 40h2.1l-3.33-10H40l2.28-6.84L47.89 40H50l-6.67-20L50 0h-2.1l-5.62 16.84L40 10zm1.23 10l-2.28-6.84L34 28h4.56l2.67-8zm-10.67 8l-2-6h-9.12l2 6h9.12zm-12.84-4.84L12.77 38h15.79l2.67-8H20l-2.28-6.84zM18.77 20H30l2.28 6.84L37.23 12H21.44l-2.67 8zm-7.33 2H16l-4.95 14.84L8.77 30l2.67-8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
background-repeat: repeat;
background-size: 50px 40px;
animation: moveBackground 50s linear infinite;
z-index: -1;
}
@keyframes moveBackground {
0% { transform: translate(0, 0); }
100% { transform: translate(-50px, -40px); }
}
.logo {
width: 120px;
margin-bottom: 20px;
filter: drop-shadow(0 0 5px #23f7cc);
}
h1 {
font-size: 3em;
text-shadow: 0 0 5px #23f7cc;
margin-bottom: 20px;
}
p {
font-size: 1.2em;
max-width: 600px;
margin: 0 auto;
background-color: rgba(0, 0, 0, 0.6);
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 5px #23f7cc;
}
footer {
position: absolute;
bottom: 10px;
width: 100%;
font-size: 0.8em;
color: #aaa;
}
</style>
</head>
<body>
<img src="img/logo.png" alt="Logo Ambidestry" class="logo">
<h1>AMBIDESTRY</h1>
<p>Em breve: um aplicativo com foco em <strong>neurodesenvolvimento</strong> e <strong>reabilitação motora</strong>.
Estamos validando com usuários reais, comuns, diversos — porque acessibilidade começa com escuta.</p>
<footer>© 2025 Ambidestry. Todos os direitos reservados.</footer>
</body>
</html>