diff --git a/about.html b/about.html
index dd44924..56a4575 100644
--- a/about.html
+++ b/about.html
@@ -2,9 +2,21 @@
+
About Me
+
+
+
\ No newline at end of file
diff --git a/contact.html b/contact.html
index 27bd9fb..060414a 100644
--- a/contact.html
+++ b/contact.html
@@ -2,9 +2,21 @@
+
Contact Me
+
+
+
\ No newline at end of file
diff --git a/css/breakpoint-helpers.css b/css/breakpoint-helpers.css
new file mode 100644
index 0000000..8d35839
--- /dev/null
+++ b/css/breakpoint-helpers.css
@@ -0,0 +1,3 @@
+
+
+/*# sourceMappingURL=breakpoint-helpers.css.map */
diff --git a/css/index.css b/css/index.css
deleted file mode 100644
index 445d0e6..0000000
--- a/css/index.css
+++ /dev/null
@@ -1,40 +0,0 @@
-.header {
- overflow: hidden;
- background-color: lightgrey;
- padding: 20px 10px; }
-
-.header a {
- float: left;
- color: black;
- text-align: center;
- padding: 12px;
- text-decoration: none;
- font-size: 18px;
- line-height: 25px;
- border-radius: 4px; }
-
-.header a.name {
- font-size: 25px;
- font-weight: bold; }
-
-.header a:hover {
- background-color: #dddddd;
- color: black; }
-
-.header a:active {
- background-color: dodgerblue;
- color: white; }
-
-.header-right {
- float: right; }
-
-@media screen and (max-width: 500px) {
- .header a {
- float: none;
- display: block;
- text-align: left; }
-
- .header-right {
- float: none; } }
-
-/*# sourceMappingURL=index.css.map */
diff --git a/css/index.css.map b/css/index.css.map
deleted file mode 100644
index 5424a77..0000000
--- a/css/index.css.map
+++ /dev/null
@@ -1,7 +0,0 @@
-{
-"version": 3,
-"mappings": "AAEA,OAAO;EACL,QAAQ,EAAE,MAAM;EAChB,gBAAgB,EAAE,SAAS;EAC3B,OAAO,EAAE,SAAS;;AAEpB,SAAS;EACP,KAAK,EAAE,IAAI;EACX,KAAK,EAAE,KAAK;EACZ,UAAU,EAAE,MAAM;EAClB,OAAO,EAAE,IAAI;EACb,eAAe,EAAE,IAAI;EACrB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACjB,aAAa,EAAE,GAAG;;AAEpB,cAAc;EACZ,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;;AAEnB,eAAe;EACb,gBAAgB,EAAE,OAAO;EACzB,KAAK,EAAE,KAAK;;AAEd,gBAAgB;EACd,gBAAgB,EAAE,UAAU;EAC5B,KAAK,EAAE,KAAK;;AAEd,aAAa;EACX,KAAK,EAAE,KAAK;;AAEd,oCAA4C;EAC1C,SAAS;IACP,KAAK,EAAE,IAAI;IACX,OAAO,EAAE,KAAK;IACd,UAAU,EAAE,IAAI;;EAElB,aAAa;IACX,KAAK,EAAE,IAAI",
-"sources": ["../sass/index.sass"],
-"names": [],
-"file": "index.css"
-}
diff --git a/css/main.css b/css/main.css
new file mode 100644
index 0000000..67f33b7
--- /dev/null
+++ b/css/main.css
@@ -0,0 +1,54 @@
+@import url("https://fonts.googleapis.com/css2?family=Fira+Code&family=Montserrat:wght@400;600;700&display=swap");
+.header {
+ overflow: hidden;
+ background-color: #f1f1f1;
+ padding: 15px 10px;
+ font-family: "Fira Code", monospace;
+ border-radius: 3px; }
+
+.header a {
+ float: left;
+ color: black;
+ text-align: center;
+ padding: 7px 12px;
+ text-decoration: none;
+ font-size: 18px;
+ line-height: 25px;
+ border-radius: 4px; }
+
+.header a.name {
+ font-size: 25px;
+ font-weight: 600; }
+
+.header a:hover {
+ background-color: #dddddd;
+ color: black; }
+
+.header a:active {
+ background-color: dodgerblue;
+ color: white; }
+
+.header-right {
+ float: right; }
+
+@media (max-width: 575px) {
+ .header a {
+ float: none;
+ display: block;
+ text-align: left; }
+
+ .header-right {
+ float: none; } }
+.page {
+ background-color: rgba(240, 240, 240, 0.94);
+ height: fit-content;
+ padding: 10px;
+ margin-top: 10px;
+ font-family: "Montserrat", sans-serif; }
+
+@media (min-width: 992px) {
+ .page {
+ width: 80%;
+ margin: 10px auto auto; } }
+
+/*# sourceMappingURL=main.css.map */
diff --git a/css/masonry.css b/css/masonry.css
new file mode 100644
index 0000000..fd825a9
--- /dev/null
+++ b/css/masonry.css
@@ -0,0 +1,41 @@
+.grid-item {
+ width: 240px;
+ margin-bottom: 10px;
+ padding: 5px;
+ box-sizing: border-box;
+ height: 200px;
+ transition: 0.22s all; }
+
+.grid {
+ margin: 0 auto;
+ transition: 0.2s all; }
+
+.grid-item--tall3 {
+ height: 300px; }
+
+.grid-item--tall4 {
+ height: 400px; }
+
+.grid-item--width2 {
+ background-color: #81d4fa;
+ width: 490px; }
+
+.grid-item--image {
+ width: fit-content;
+ height: fit-content; }
+
+@media (max-width: 575px) {
+ .grid-item--width2 {
+ width: 100%; } }
+.blur-me {
+ filter: grayscale(20%) blur(0.7px) brightness(94%);
+ opacity: 0.8;
+ box-shadow: none; }
+
+.grid:hover .grid-item:hover {
+ filter: blur(0px);
+ opacity: 1; }
+ .grid:hover .grid-item:hover > img {
+ filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.25)); }
+
+/*# sourceMappingURL=masonry.css.map */
diff --git a/images/codedaysd.png b/images/codedaysd.png
new file mode 100644
index 0000000..11daedf
Binary files /dev/null and b/images/codedaysd.png differ
diff --git a/images/foresightsports.png b/images/foresightsports.png
new file mode 100644
index 0000000..85914af
Binary files /dev/null and b/images/foresightsports.png differ
diff --git a/index.html b/index.html
index d910cd2..4e1beb3 100644
--- a/index.html
+++ b/index.html
@@ -6,10 +6,11 @@
Jake Cover
-
+
+
-
+
+
+
+
+
+ Distest
+
+
+
+

+
+
+
+ SRND
+
+
+
+ ScoreSaber Installer
+
+
+
+

+
+
+
ReplyBot
+
+
+
+
+
+
+