diff --git a/index.html b/index.html
index 7b70c65..baf8a2a 100644
--- a/index.html
+++ b/index.html
@@ -15,7 +15,6 @@
background-size: cover;
cursor: pointer;
margin-top: 20px;
- z-index: 999;
}
/* Stil für das GIF */
@@ -26,33 +25,13 @@
background-size: cover;
cursor: pointer;
margin-top: 20px;
- z-index: 999;
+ background-image: url('tnt-explode.gif');
+ background-size: cover;
}
- /* Alle Elemente der Seite sollen unabhängig voneinander positioniert werden */
- body, html {
- overflow: hidden;
- margin: 0;
- padding: 0;
- height: 100%;
- background-color: #f0f0f0;
- position: relative;
- }
-
- .falling {
- position: absolute;
- transition: all 1s ease-in-out;
- animation: fall 2s forwards;
- }
-
- /* Fall-Animation */
- @keyframes fall {
- 0% {
- transform: translateY(0);
- }
- 100% {
- transform: translateY(100vh);
- }
+ /* Stil für das verstecken von Elementen */
+ .hidden {
+ visibility: hidden;
}
@@ -95,7 +74,7 @@