body {
  /* Set the background image */
  background-image: url(snpk.jpg);

  /* Set position to relative for proper positioning context */
  position: relative;

  /* Make the image stay at the bottom */
  background-position: bottom center;

  /* Prevent the image from repeating */
  background-repeat: no-repeat;

  /* Make the image take up full width */
  background-size: cover;

  min-height: 100dvh;

  margin: 0;
}
p {
  width: 100vw;
  text-align: center;
  position: fixed;
  bottom: 0;
}
img {
  filter: brightness(0.45);
  scale: 66%;
  transition: filter 0.2s ease-out, scale 0.4s ease-in-out;
}
img:hover {
  filter: brightness(1);
  scale: 75%;
}
