/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Creepster', cursive;
  color: white;
  background: #000;
}

.content {
  text-align: center;
  z-index: 2;
}

.glitch-text {
  font-size: 4em;
  font-family: 'Nosifer', sans-serif;
  color: #ff6600;
  text-shadow: 2px 2px black;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.description {
  font-size: 1.5em;
  color: #ff00ff;
  margin-top: 10px;
  text-shadow: 1px 1px black;
  font-family: 'Russo One', sans-serif;
}

.image-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.random-img {
  position: absolute;
  width: 150px;
  height: auto;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}