diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index a49e278..b2b8504 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -33,4 +33,18 @@ const { title } = Astro.props;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace;
} */
+ body{
+ font-family: quicksand;
+ animation: fadeInAnimation ease 6s;
+ animation-iteration-count: 1;
+ animation-fill-mode: forwards;
+ }
+ @keyframes fadeInAnimation {
+ 0% {
+ opacity: 0;
+ }
+ 100% {
+ opacity: 1;
+ }
+ }
diff --git a/src/pages/drawing/index.astro b/src/pages/drawing/index.astro
index e4fe25a..32ffba2 100644
--- a/src/pages/drawing/index.astro
+++ b/src/pages/drawing/index.astro
@@ -9,7 +9,16 @@ import Layout from '../../layouts/Layout.astro';