diff --git a/index.html b/index.html
new file mode 100644
index 0000000..ca27b83
--- /dev/null
+++ b/index.html
@@ -0,0 +1,29 @@
+
+
+
+
+
+ Sideload Guide
+
+
+
+
+
+
+
+ Welcome to the Sideload Guide
+ This guide will help you understand how to sideload apps. (Alot of other random text if you want to type it here lol)
+
+
+ Tutorial
+ Follow this tutorial for a step-by-step process on sideloading apps. (Other text here)
+
+
+
+
+
+
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..e5092dc
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,60 @@
+body {
+ margin: 0;
+ font-family: Arial, sans-serif;
+ background: linear-gradient(135deg, rgb(29, 29, 30), rgb(255, 255, 255));
+ color: #333;
+ display: flex;
+ flex-direction: column;
+ min-height: 100vh;
+}
+
+.container {
+ display: flex;
+ flex-direction: column;
+ flex: 1;
+ padding: 20px;
+ box-sizing: border-box;
+}
+
+header {
+ text-align: center;
+ margin-bottom: 20px;
+}
+
+h1 {
+ font-size: 2.5em;
+ color: #fff;
+}
+
+main {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ gap: 20px;
+}
+
+.box {
+ background: rgba(255, 255, 255, 0.2);
+ border-radius: 15px;
+ padding: 20px;
+ backdrop-filter: blur(15px);
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
+ width: 100%;
+ max-width: 800px;
+ margin: 0 auto;
+ text-align: center;
+}
+
+.box h2 {
+ font-size: 2em;
+ color: #222;
+ margin: 0;
+ padding-bottom: 10px;
+}
+
+footer {
+ text-align: center;
+ padding: 15px;
+ background: rgba(255, 255, 255, 0.3);
+ border-top: 1px solid #ddd;
+}