/* ills.css */

body {
  background-color: black;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.back {
  position: fixed;
  top: 18px;
  left: 22px;
  z-index: 100;
}

.back a {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 20px;
  color: rgb(255, 103, 222);
  text-decoration: none;
  transition: color 0.3s ease;
}

.back a:hover {
  color: #ff1ea1;
}

/* freeform canvas */
.canvas {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

/* each image — absolutely positioned, no card */
.item {
  position: absolute;
}

.item img {
  display: block;
  width: 100%;
  height: auto;
}

/* small caption underneath */
.caption {
  font-family: 'gotham xlight', sans-serif;
  font-size: 10px;
  font-weight: bold;
  color: rgb(0, 200, 214);
  margin-top: 6px;
  padding-left: 2px;
}
