-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
81 lines (74 loc) · 2.28 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
<!DOCTYPE html>
<html>
<head>
<meta name="google-site-verification" content="C1lL4eZcV0p_DxPZOyGj8Tz54nOowDtDxt1geW3Ko0U" />
<title>Tyrannical Games</title>
<link rel="icon" type="image/png" href="Favicon.png">
<style>
body {
margin: 0;
padding: 0;
background-color: black;
}
.container {
position: relative;
text-align: center;
max-width: 100%;
height: auto;
}
.image {
margin-top: 20px;
max-width: 100%;
height: auto;
}
.button-group {
margin-top: 20px;
text-align: center;
}
.button-group a {
display: inline-block;
margin: 0 10px;
padding: 10px 20px;
background-color: rgb(158, 26, 27);
color: white;
text-decoration: none;
font-size: 18px;
font-weight: bold;
border-radius: 5px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
transition: all 0.3s ease;
}
.button-group a:hover {
background-color: rgb(128, 0, 0);
transform: scale(1.1);
}
.about-image {
margin-top: 20px;
max-width: 100%;
height: auto;
}
/* Media query for smaller screens */
@media (max-width: 768px) {
.button-group a {
font-size: 16px;
}
}
</style>
</head>
<body>
<div class="container">
<picture>
<!-- Use higher-resolution image for 4k screens -->
<source srcset="Logo.png" media="(min-width: 2560px)">
<!-- Default image for other screens -->
<img class="image" src="Logo.png" alt="Coming Soon" />
</picture>
<div class="button-group">
<a href="https://twitter.com/TyrannicalGames" target="_blank">Follow us on Twitter</a>
<a href="https://github.com/Ershany/Arcane-Engine" target="_blank">Arcane Engine GitHub</a>
<a href="https://www.patreon.com/user?u=56529636" target="_blank">Development Patreon</a>
</div>
<img class="about-image" src="About.png" alt="About" />
</div>
</body>
</html>