body {
  background-color: #8c1aff;
  background-image: url('graveyardz/starback.gif');
  background-size: cover;         /* Make it fill the screen */
  background-repeat: no-repeat;   /* Don't tile it */
  background-attachment: fixed;   /* Keeps background still while scrolling */
  background-position: center;    /* Center the image */
  color: #ff1ac6;
  font-family: sans-serif;
  padding: 20px;
}

h1 {
  font-size: 2em;
  margin-bottom: 1em;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery img {
  width: 400px;              /*  width */
  height: auto;
  border: 3px solid #9D00FF; /*border */
  border-radius: 10px;
  display: block;
}


a {
  color:#9D00FF ;
  text-decoration: underline;
}

