diff --git a/background.jpg b/background.jpg
new file mode 100644
index 0000000..27e6a09
Binary files /dev/null and b/background.jpg differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..20410d0
--- /dev/null
+++ b/index.html
@@ -0,0 +1,40 @@
+
+
+
+
+
+
My website
+
+
Me
+
I play games and code things.
+
+
I know these languages
+
English
+
Python
+
C/C++
+
Lua/GLua
+
+
And less of these
+
Rust
+
Java
+
Javascript
+
+
Links
+
My Discord
+
My Steam
+
My Github
+
+
+
+
+
+
\ No newline at end of file
diff --git a/main.js b/main.js
new file mode 100644
index 0000000..a2e3eda
--- /dev/null
+++ b/main.js
@@ -0,0 +1 @@
+console.log("Hello, World!")
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..12873ac
--- /dev/null
+++ b/style.css
@@ -0,0 +1,40 @@
+body {
+ background-image: url("background.jpg");
+ background-size: cover;
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ color: white;
+}
+
+.MainDiv {
+ padding: 16px;
+ border-radius: 16px;
+ text-align: left;
+ background-color: rgba(0, 0, 0, 0.4);
+ backdrop-filter: blur(5px);
+ margin-inline: auto;
+ width: 75%;
+}
+
+a:link {
+ color: rgb(14, 161, 14);
+ background-color: transparent;
+ text-decoration: none;
+}
+
+a:visited {
+ color: rgb(14, 161, 14);
+ background-color: transparent;
+ text-decoration: none;
+}
+
+a:hover {
+ color: rgb(104, 204, 104);
+ background-color: transparent;
+ text-decoration: underline;
+}
+
+a:active {
+ color: rgb(104, 204, 104);
+ background-color: transparent;
+ text-decoration: underline;
+}
\ No newline at end of file