

body {
	background-image: url("https://zicroniumpantz.neocities.org/sparkle-rainbow.gif");
  color: #000;
  margin: 40px;
	font-family: "Lucida Console", "Courier New", monospace;

  
}
.main {
	border-style: inset;
	background-color: #d390f8;
	color: purple;
	padding: 8px 15px;
	display: inline-block;
}
h2 {
  	font-family: "Lucida Console", "Courier New", monospace;

  font-size: 28px;
  color: white;
  text-shadow: 1px 1px 0 #000080;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1.5px;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  background-color: #6d53a3;
  border: 2px outset #ffffff;
  padding: 15px;
  border-radius: 6px;
  box-shadow: inset 1px 1px 5px #ffffff;
  max-width: 700px;
  margin: 0 auto;
}

.gallery-item {
  width: 130px;
  height: 130px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #d390f8;
  box-shadow: 1px 1px 0 white inset, -1px -1px 0 #ffffff inset;
  border-radius: 3px;
  transition: border-color 0.15s;
  background: #ffffff;
}

.gallery-item:hover {
  border-color: #ffffff;
  box-shadow: 1px 1px 3px #6d53a3;
}

/* Lightbox styled like Windows XP dialog */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding: 30px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  max-width: 90vw;
  background: #d390f8;
  border: 2px solid #ffffff;
  border-radius: 8px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.4),
    inset 0 0 6px #aec6ff;
	font-family: "Lucida Console", "Courier New", monospace;
}

.lightbox-content {
  max-width: 100%;
  max-height: 300px;
  display: block;
  margin: 0 auto 10px auto;
  border: 2px solid #ffffff;
  border-radius: 3px;
  box-shadow: 1px 1px 0 white inset, -1px -1px 0 #808080 inset;
  background: white;
}

#caption {
  color: #6d53a3;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

.close {
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  background: #6d53a3;
  border: 2px outset #ffffff;
  border-radius: 3px;
  padding: 3px 10px;
  text-align: center;
  user-select: none;
  font-size: 18px;
  box-shadow: 1px 1px 0 white inset, -1px -1px 0 #404040 inset;
  transition: all 0.1s;
  width: 40px;
  margin: 0 auto;
}

.close:hover {
  background: #d390f8;
  border-style: inset;
  box-shadow: none;
}
