diff --git a/astro.config.ts b/astro.config.ts
index b03b105..8fe7de3 100644
--- a/astro.config.ts
+++ b/astro.config.ts
@@ -33,7 +33,4 @@ export default defineConfig({
   image: {
     service: passthroughImageService(),
   },
-  experimental: {
-    responsiveImages: true,
-  },
 });
diff --git a/src/components/Header.astro b/src/components/Header.astro
index 5f69496..407cfac 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -33,7 +33,9 @@ const currentPath = pathname.replace(/\/$/, "");
           );
         })
       }
-      <Button href={`mailto:${SITE.EMAIL}`} link="Email" />
+      <li>
+        <Button href={`mailto:${SITE.EMAIL}`} link="Email" />
+      </li>
     </ul>
   </nav>
 </header>
diff --git a/src/components/Hero.astro b/src/components/Hero.astro
index fbe914e..9d858e9 100644
--- a/src/components/Hero.astro
+++ b/src/components/Hero.astro
@@ -5,7 +5,7 @@ import Link from "@components/Link.astro";
 
 <section class="animate-reveal flex flex-col gap-6 opacity-0">
   <h1
-    class="flex w-full flex-col lowercase text-start text-7xl leading-[1] font-medium tracking-[-2px] sm:tracking-[-4px]"
+    class="flex w-full flex-col text-start text-7xl leading-[1] font-medium tracking-[-2px] lowercase sm:tracking-[-4px]"
   >
     <span class="text-nowrap">Troy Lusty</span>
     <span class="text-tertiary text-pretty">Digital Designer</span>
@@ -21,7 +21,7 @@ import Link from "@components/Link.astro";
     Want to chat?
     <Link
       href="mailto:hello@troylusty.com"
-      class="underline lowercase underline-offset-2"
+      class="lowercase underline underline-offset-2"
     >
       Send me a message
     </Link>
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index da119b5..cefaa36 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -27,7 +27,7 @@ const { title, description, image, date, updated, tags } = Astro.props;
     tags={tags}
   />
   <body
-    class="bg-primary text-secondary items mx-auto my-0 flex min-h-screen w-full max-w-[65ch] flex-col justify-start gap-6 p-4 md:my-6"
+    class="bg-primary text-secondary items mx-auto my-0 flex w-full max-w-[65ch] flex-col justify-start gap-6 p-4 md:my-6"
   >
     <Header />
     <main transition:animate="fade" class="flex flex-col gap-6">