diff --git a/apps/client/src/app/globals.css b/apps/client/src/app/globals.css
index 3b3f4df..73766de 100644
--- a/apps/client/src/app/globals.css
+++ b/apps/client/src/app/globals.css
@@ -2,6 +2,29 @@
@tailwind components;
@tailwind utilities;
+.page-height {
+ min-height: 100vh;
+}
+
+@supports(min-height: 100dvh) {
+ .page-height {
+ min-height: 100dvh;
+ }
+}
+
+@media screen and (min-width: 1024px) {
+ .page-height-lg {
+ min-height: 100vh;
+ }
+
+ @supports(min-height: 100dvh) {
+ .page-height-lg {
+ min-height: 100dvh;
+ }
+ }
+}
+
+
.loading-ellipsis:after {
font-family: var(--font-space);
overflow: hidden;
diff --git a/apps/client/src/app/room/[code]/game/[gameId]/game.tsx b/apps/client/src/app/room/[code]/game/[gameId]/game.tsx
index 2141745..fd4049c 100644
--- a/apps/client/src/app/room/[code]/game/[gameId]/game.tsx
+++ b/apps/client/src/app/room/[code]/game/[gameId]/game.tsx
@@ -167,7 +167,7 @@ export default function Game({ gameInfo, session }: GameProps) {
diff --git a/apps/client/src/app/room/[code]/lobby.tsx b/apps/client/src/app/room/[code]/lobby.tsx
index bbda00d..ef90d24 100644
--- a/apps/client/src/app/room/[code]/lobby.tsx
+++ b/apps/client/src/app/room/[code]/lobby.tsx
@@ -70,7 +70,7 @@ export default function Lobby({
return (
<>
-
+
{!roomIsFull && (
diff --git a/apps/client/src/app/sign-in/[nickname]/page.tsx b/apps/client/src/app/sign-in/[nickname]/page.tsx
index 7674466..bfedbeb 100644
--- a/apps/client/src/app/sign-in/[nickname]/page.tsx
+++ b/apps/client/src/app/sign-in/[nickname]/page.tsx
@@ -32,7 +32,7 @@ export default async function SignInPage({
return (
<>
-
+
diff --git a/apps/client/src/components/error-screen.tsx b/apps/client/src/components/error-screen.tsx
index ccdab5c..b517c79 100644
--- a/apps/client/src/components/error-screen.tsx
+++ b/apps/client/src/components/error-screen.tsx
@@ -2,7 +2,7 @@ import { LinkButton } from "./button";
export default function ErrorScreen({ details }: { details: string }) {
return (
-
+
artificial
unintelligence
diff --git a/apps/client/src/components/homepage-template.tsx b/apps/client/src/components/homepage-template.tsx
index 868d821..d05a2fa 100644
--- a/apps/client/src/components/homepage-template.tsx
+++ b/apps/client/src/components/homepage-template.tsx
@@ -26,7 +26,7 @@ export default function HomepageTemplate({
<>
-