body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #6bbccd;
  min-height: 100vh;
    color: white;
}

#pixel-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

body > *:not(#pixel-canvas) {
  position: relative;
  z-index: 1;
}

.back-link {
  display: inline-block;
  color: white;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid white;
  padding: 4px 12px;
  letter-spacing: 2px;
  margin: 10px;
}

.back-link:hover {
  background: black;
  color: white;
}

.title {
  text-align: center;
  margin: 20px 0;
}

.title p {
  padding: 0 25px;
  line-height: 1.5;
}

#photos {
  width: %;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#photos img {
  width: 100%;  /* this makes the image fill the container */
  display: block;
  margin-bottom: 20px;
}
