html {
  background: rgb(65, 69, 69);
  cursor: none !important;
  overflow: hidden;
}
body,
html {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
img[src="assets/img/TNT.webp"] {
  height: 200px;
  width: 200px;
}

img[src="assets/img/exploded.png"] {
  height: 600px;
  width: 600px;
}


.armedTNT {
  animation: tntFlash 1s linear infinite;
}

.cursor {
    pointer-events: none;
    background-image: url("../img/flint_and_steel.png");
    width: 104px;
    height: 120px;
}

#hidden {
  display: none !important;
}

@keyframes tntFlash {
  0% {
    filter: brightness(100000000);
  }

  49% {
    filter: brightness(100000000);
  }

  50% {
    filter: brightness();
  }
}
