body {
  background-color: black;
  color: white;
  font-family: Verdana;
  background-image: url("https://scpfan173.neocities.org/ap0stles.png");
  cursor: url("https://scpfan173.neocities.org/BunnySmall.png"), auto;
  background-position: center center;
  .gallery {
    display: flex;
    flex-wrap: wrap;  /* Allow images to wrap to the next line */
    justify-content: space-around; /* Distribute images evenly */
    width: 100%; /* Make it take up the full width of the container */
  }

  .gallery img {
    width: 200px;  /* Set the width of each image */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Add some space below each image */
  }
}