diff --git a/index.html b/index.html
new file mode 100644
index 0000000..8ad57f3
--- /dev/null
+++ b/index.html
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+ Welcome to BurgerStore
+
+
+
+
+
+
+
BurgerNotes
+
iOS: v1.0
+
Android: v1.0
+
Linux: v1.0
+
Web: v1.0
Get
+
+
+
diff --git a/styles.css b/styles.css
new file mode 100644
index 0000000..3bc4320
--- /dev/null
+++ b/styles.css
@@ -0,0 +1,66 @@
+body {
+ background-color: #fffed4;
+ text-align: center;
+ list-style: none;
+ font-family: Arial, Sans Serif;
+ font-size: 20px;
+}
+
+h {
+ font-size: 40px;
+}
+
+img {
+ max-height: 200px;
+}
+
+.container {
+ padding-top: 5px;
+ border-top: solid 1px black;
+ border-bottom: solid 1px black;
+ display: flex;
+ justify-content: space-evenly;
+ padding-bottom: 5px;
+}
+
+.burgerbox {
+ margin-top: 20px;
+ width: 250px;
+ height: 400px;
+ margin-bottom: 10px;
+ margin-left: 7vh;
+ margin-right: 7vh;
+ border-style: solid;
+ border-image: none;
+ border-radius: 8px;
+ border-width: 1px;
+ background-color: white;
+ font-size: 17px;
+ overflow-x: hidden;
+ text-align: left;
+ display: flex;
+ flex-direction: column;
+}
+
+.burgerbox h {
+ padding-left: 10px;
+ font-size: 25px;
+}
+
+.burgerbox p {
+ padding-left: 10px;
+ margin: 2px;
+}
+
+.getbutton {
+ background-color: lightblue;
+ display: flex;
+ height: 100%;
+ text-align: center;
+ flex-direction: column;
+ justify-content: center;
+ margin: 5px;
+ border-radius: 8px;
+ text-decoration: none;
+ color: black;
+}