-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (103 loc) · 2.87 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
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:[email protected]&display=swap" rel="stylesheet">
<title>Vulcano.ai - Please Stand by</title>
<style>
body {
background-color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
color: rgb(0, 0, 0);
font-size: 20px;
font-family: 'Space Grotesk', Courier, monospace;
text-align: center;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 50%;
margin-bottom: 20px;
}
img {
width: 50%;
margin-bottom: 20px;
animation: spin 20s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.pulsate {
animation: pulsate 2s infinite;
}
@keyframes pulsate {
0% {
opacity: 1;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.social-links {
display: flex;
gap: 20px;
}
.social-links a {
color: rgb(13, 0, 255);
text-decoration: none;
font-size: 24px;
}
@media (max-width: 768px) {
.container {
width: 80%;
}
img {
width: 70%;
}
.social-links a {
font-size: 20px;
}
}
@media (max-width: 480px) {
.container {
width: 90%;
}
img {
width: 80%;
}
.social-links a {
font-size: 18px;
}
}
</style>
</head>
<body>
<div class="container">
<img src="assets/Vulcano-Blue-Transparent.png" alt="Vulcano">
<p class="pulsate">Estamos codificando nuestra nave espacial. Please Stand By.</p>
<p class="pulsate">Software Escrito en Colombia. Please Stand By.</p>
<p>Somos Vulcano.ai</p>
<div class="social-links">
<a href="https://www.instagram.com/vulcano.ai" target="_blank">Instagram | </a>
<a href="https://www.linkedin.com/company/vulcano-ai" target="_blank">LinkedIn</a>
</div>
</div>
</body>
</html>