Skip to content

Commit 26d44d5

Browse files
authored
Add basic HTML structure and styles for Ambidestry
1 parent c0e10b1 commit 26d44d5

1 file changed

Lines changed: 60 additions & 1 deletion

File tree

index.html

Lines changed: 60 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,60 @@
1-
www.ambidestry.com
1+
<!DOCTYPE html>
2+
<html lang="pt-BR">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Ambidestry</title>
7+
<style>
8+
body {
9+
margin: 0;
10+
padding: 0;
11+
background-image: url('img/fundo.jpeg'); /* substitua pelo nome da sua imagem */
12+
background-size: cover;
13+
background-position: center;
14+
background-repeat: no-repeat;
15+
font-family: 'Segoe UI', sans-serif;
16+
color: #00ffff;
17+
text-align: center;
18+
display: flex;
19+
flex-direction: column;
20+
justify-content: center;
21+
height: 100vh;
22+
backdrop-filter: blur(2px);
23+
}
24+
25+
h1 {
26+
font-size: 3em;
27+
text-shadow: 0 0 10px #00ffff;
28+
}
29+
30+
p {
31+
font-size: 1.2em;
32+
max-width: 600px;
33+
margin: 20px auto;
34+
background-color: rgba(0, 0, 0, 0.5);
35+
padding: 20px;
36+
border-radius: 10px;
37+
}
38+
39+
.logo {
40+
width: 120px;
41+
margin: 0 auto 20px;
42+
}
43+
44+
footer {
45+
position: absolute;
46+
bottom: 10px;
47+
width: 100%;
48+
font-size: 0.8em;
49+
color: #aaa;
50+
}
51+
</style>
52+
</head>
53+
<body>
54+
<img src="img/logo.jpeg" alt="Ambidestry Logo" class="logo"> <!-- substitua pelo nome da sua imagem -->
55+
<h1>AMBIDESTRY</h1>
56+
<p>Em breve: um aplicativo inovador com foco em <strong>neurodesenvolvimento</strong> e <strong>reabilitação motora</strong>.
57+
Tecnologia, ciência e acessibilidade unidos para transformar vidas.</p>
58+
<footer>© 2025 Ambidestry. Todos os direitos reservados.</footer>
59+
</body>
60+
</html>

0 commit comments

Comments
 (0)