diff --git a/static/style.css b/static/style.css index 1a31320..d8d0906 100644 --- a/static/style.css +++ b/static/style.css @@ -17,6 +17,8 @@ body { background-color: black; overflow-x: hidden; + + animation: hideContent 2.5s; } main { @@ -97,4 +99,16 @@ hr { opacity: 1; transform: none; } +} + +@keyframes hideContent { + 0% { + overflow-y: hidden; + overflow-x: hidden; + } + + 100% { + overflow-y: hidden; + overflow-x: hidden; + } } \ No newline at end of file