body {
  align-items: center;
  height: auto;
  overflow: auto;
}
 
img, p {
  cursor: url("https://pirahxcx.neocities.org/assets/cursors/asteroids-pointer.avif") 0 0, pointer;
}

img {
  display: block;
  max-width: 60vw;
}

p {
  display: none;
  font-size: 5rem;
  color: red;
  text-indent: 0;
}

span {
  position: absolute;
  top: 4px;
  left: auto;
  color: white;
  text-shadow:
     1px  1px 0 black,
    -1px  1px 0 black,
     1px -1px 0 black,
    -1px -1px 0 black,
     1px    0 0 black,
    -1px    0 0 black,
 0  1px 0 black,
 0 -1px 0 black;
  animation: fadeout 3s forwards;
}

@keyframes fadeout {
  0%, 66% { opacity: 1; }
     100% { opacity: 0; }
}