diff --git a/Menu.js b/Menu.js
deleted file mode 100644
index 5dd8016..0000000
--- a/Menu.js
+++ /dev/null
@@ -1,22 +0,0 @@
-export function Menu() {
- document.getElementById("menu");
-
- // open/close the menu when the user clicks on the button
- function toggleMenu() {
- if (menu.classList.contains('hidden')) {
- menu.classList.remove('hidden');
- } else {
- menu.classList.add('hidden');
- }
- }
-
- // close the menu when the user clicks outside of it
- window.onclick = function (event) {
- var dropdownWrapper = document.getElementById('dropdown-wrapper');
- if (!dropdownWrapper.contains(event.target) && !menu.classList.contains('hidden')) {
- menu.classList.add('hidden');
- }
- }
-}
-
-
diff --git a/index.html b/index.html
index d48c227..d034639 100644
--- a/index.html
+++ b/index.html
@@ -15,6 +15,7 @@
rel="stylesheet"
/>
+
-