body {
  background: #0b0f14;
  color: #fff;
  font-family: sans-serif;
  text-align: center;
}

#glob-btn {
  width: 200px;
  transition: transform 0.08s ease;
}

#glob-btn:active {
  transform: scale(1.15);
}

.particle {
  position: absolute;
  pointer-events: none;
  color: #6ef;
  font-size: 12px;
  animation: floatUp 0.6s ease-out forwards;
}

@keyframes floatUp {
  to {
    transform: translateY(-40px);
    opacity: 0;
  }
}
