diff --git a/pages/404.js b/pages/404.js
index d2dbcb38..e611fb5f 100644
--- a/pages/404.js
+++ b/pages/404.js
@@ -1,7 +1,7 @@
import React from 'react'
import styled from '@emotion/styled'
import { keyframes } from '@emotion/react'
-import { Heading, Container, Button, Text } from 'theme-ui'
+import { Heading, Container, Button, Text, Image } from 'theme-ui'
import NextLink from 'next/link'
import Head from 'next/head'
import Meta from '@hackclub/meta'
@@ -169,13 +169,27 @@ const Blinking = styled(Heading)`
}
`
+const Spinning = styled(Image)`
+ @keyframes spin {
+ from {transform:rotate(0deg);}
+ to {transform:rotate(360deg);}
+ }
+
+ animation-name: spin;
+ animation-duration: 10000ms;
+ animation-iteration-count: infinite;
+ animation-timing-function: linear;
+ aspect-ratio: 1;
+`
+
const NotFoundPage = () => (
<>
-
+
+
404!
\ No newline at end of file