diff --git a/arrowdown.svg b/arrowdown.svg
new file mode 100644
index 0000000..1afca1e
--- /dev/null
+++ b/arrowdown.svg
@@ -0,0 +1 @@
+
diff --git a/arrowup.svg b/arrowup.svg
new file mode 100644
index 0000000..d91c23e
--- /dev/null
+++ b/arrowup.svg
@@ -0,0 +1 @@
+
diff --git a/background.png b/background.png
new file mode 100644
index 0000000..e71a927
Binary files /dev/null and b/background.png differ
diff --git a/background.webp b/background.webp
new file mode 100644
index 0000000..ebbebb0
Binary files /dev/null and b/background.webp differ
diff --git a/background2.webp b/background2.webp
new file mode 100644
index 0000000..70b15ae
Binary files /dev/null and b/background2.webp differ
diff --git a/background3.webp b/background3.webp
new file mode 100644
index 0000000..71c8d92
Binary files /dev/null and b/background3.webp differ
diff --git a/favicon.png b/favicon.png
new file mode 100644
index 0000000..26d5a6f
Binary files /dev/null and b/favicon.png differ
diff --git a/image.png b/image.png
new file mode 100644
index 0000000..cff25a0
Binary files /dev/null and b/image.png differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..d8404c9
--- /dev/null
+++ b/index.html
@@ -0,0 +1,59 @@
+
+
+
+ mlum
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
IP: mlum.io
+
+
+
+
+
+
+
Information
+
+ mlum is an original prison escape server on Minecraft.
+ Become a guard or riot against them, escape the prison and
+ become a fugitive to unlock cool weapons or will you collect
+ chocolate with the wide variety of jobs?
+
+
+
+
+
+
+
+
There are 0 players online.
+
+ Enter mlum.minehut.gg or mlum.io in your direct connect bar
+ and press join server to start your prison adventure!
+
+
+
+
+
+
+
diff --git a/logo.webp b/logo.webp
new file mode 100644
index 0000000..48b2fbe
Binary files /dev/null and b/logo.webp differ
diff --git a/main.js b/main.js
new file mode 100644
index 0000000..5f20517
--- /dev/null
+++ b/main.js
@@ -0,0 +1,7 @@
+const data = async () => (await (await fetch('https://api.minehut.com/server/5a43d1ee1988867f8467f413')).json()).server;
+
+(loop = async () => {
+ let currentData = await data();
+ document.getElementById('playerCount').innerText = currentData.playerCount;
+ setTimeout(loop, 10000);
+})();
diff --git a/robots.txt b/robots.txt
new file mode 100644
index 0000000..c2a49f4
--- /dev/null
+++ b/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Allow: /
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..66e8fc2
--- /dev/null
+++ b/style.css
@@ -0,0 +1,80 @@
+html {
+ scroll-behavior: smooth;
+}
+
+body {
+ margin: 0;
+ overflow: overlay;
+}
+
+#players {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+}
+
+#players > img {
+ margin: 12px;
+ height: 32px;
+ width: 32px;
+}
+
+a {
+ color: white;
+ text-decoration: none;
+}
+
+section {
+ position: absolute;
+ width: 100%;
+ height: 100vh;
+}
+
+#section1 {
+ background-image: url('background.webp');
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-size: cover;
+ z-index: 2;
+}
+
+#section2 {
+ background-image: url('background2.webp');
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-size: cover;
+ top: 100%;
+ z-index: 1;
+}
+
+#section3 {
+ background-image: url('background3.webp');
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+ background-size: cover;
+ top: 200%;
+ z-index: 0;
+}
+
+section > div {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ text-align: center;
+ color: #ffffff;
+ font-family: verdana;
+}
+
+::-webkit-scrollbar {
+ width: 10px;
+}
+
+::-webkit-scrollbar-thumb {
+ background: #ffffff;
+ border-radius: 25px;
+}
+
+::-webkit-scrollbar-thumb:hover {
+ background: #dddddd;
+}