diff --git a/src/pages/history/[date].astro b/src/pages/history/[date].astro
index 0bd1e40..8796c14 100644
--- a/src/pages/history/[date].astro
+++ b/src/pages/history/[date].astro
@@ -1,7 +1,6 @@
---
import { Geshem } from '../../components/Geshem';
import '../../styles/global.css';
-import '../../styles/geshem.css';
export const prerender = false;
diff --git a/src/pages/index.astro b/src/pages/index.astro
index fb90246..d41f1fa 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -1,7 +1,6 @@
---
import { Geshem } from '../components/Geshem';
import '../styles/global.css';
-import '../styles/geshem.css';
const { date } = Astro.params;
---
diff --git a/src/styles/geshem.css b/src/styles/geshem.css
deleted file mode 100644
index 2dba79f..0000000
--- a/src/styles/geshem.css
+++ /dev/null
@@ -1,45 +0,0 @@
-#datetime {
- position: absolute;
- top: 20px;
- left: 20px;
- color: white;
- font-family: monospace;
-}
-
-#date {
- font-size: 1.4em;
-}
-
-#time {
- font-size: 2.8em;
-}
-
-#slider {
- position: fixed;
- bottom: 8vh;
- width: 30vw;
- margin-left: 35vw;
-}
-
-@media only screen and (max-device-width: 812px) {
- #slider {
- width: 80vw;
- margin-left: 8vw;
- z-index: 10;
- }
-}
-
-body {
- margin: 0;
- padding: 0;
- position: fixed;
- overflow: hidden;
- width: 100vw;
- height: 100vh;
- user-select: none;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
- "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
- sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-}
\ No newline at end of file
diff --git a/src/styles/global.css b/src/styles/global.css
index a461c50..c81f9a9 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -1 +1,16 @@
-@import "tailwindcss";
\ No newline at end of file
+@import "tailwindcss";
+
+body {
+ margin: 0;
+ padding: 0;
+ position: fixed;
+ overflow: hidden;
+ width: 100vw;
+ height: 100vh;
+ user-select: none;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
+ "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
+ sans-serif;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
\ No newline at end of file
--
cgit v1.3.1