Merge pull request #7 from Hacking-in-Parallel-Berlin-22/tobias/center_404

center stuff, text
tobias/add_privacy
Leif Niemczik 2022-11-30 17:24:49 +01:00 committed by GitHub
commit 4ae68421ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 3 deletions

View File

@ -4,11 +4,32 @@ import Layout from '../layouts/Layout.astro'
<Layout title='Page not found'>
<main>
<img
<div class="figure">
<img
src='/404.gif'
alt='Pixel art of a squirrel with 2 halves of a fiber cable that were chewed in half. Cable and small lightning strikes flashing'
/>
/>
<h1>Page not found</h1>
<p>It seems the squirrels got to the cable again.</p>
<p>Looks like the squirrels got the fiber again</p>
</div>
</main>
</Layout>
<style>
figure,
p {
margin-bottom: 10rem;
text-align: center;
}
img {
margin-top: 5rem;
width: 50%;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}
h1 {
text-align: center;
}
</style>