-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<style>
body,
html {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
background: url("background.webp") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.center-content {
display: flex;
flex-direction: column;
justify-content: left;
align-items: left;
height: 80vh;
text-align: left;
margin-left: 18vh;
}
h1 {
font-size: 8vw;
}
a {
font-size: 2vw;
text-shadow: 6px 6px 25px #000;
}
</style>
</head>
<body>
<div class="center-content">
<h1>Vault 404</h1>
<a href="404_fallout_1.html">404: Fallout 1</a>
<a href="404_fallout_2.html">404: Fallout 2</a>
<a href="404_fallout_stand_by.html">404: Fallout Stand By</a>
<a href="404_vault_boy.html">404: Vault Boy</a>
<a href="404_dumpster_fire.html">404: Dumpster Fire</a>
</div>
</body>
</html>