diff --git a/src/routes/+error.svelte b/src/routes/+error.svelte index 7dfdd36..585b7a3 100644 --- a/src/routes/+error.svelte +++ b/src/routes/+error.svelte @@ -11,7 +11,7 @@

{status}

{#if status == 404} -

That page received a cease and desist letter from a multi-billion dollar tech company.

+

This page received a cease and desist letter from a multi-billion dollar tech company.


true}>Home {:else} @@ -25,14 +25,22 @@ .error { padding-top: 5rem; text-align: center; + height: 100vh; + display: flex; + gap: 12px; + flex-direction: column; + justify-content: center; } h1 { font-size: 10rem; color: var(--accent-color); + margin-bottom: 24px; } + p { font-size: 5ch; color: var(--white); + line-height: 3rem; } diff --git a/svelte.config.js b/svelte.config.js index 8c1cf39..80c1f3c 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -14,7 +14,7 @@ const config = { }), env: { publicPrefix: 'RV' - }, + } } };