body {
  background: black;
  color: #00ffcc;
  font-family: "Courier New", monospace;
  cursor: crosshair;
}

.container {
  width: 800px;
  margin: auto;
}

header h1 {
  text-align: center;
  font-size: 48px;
  text-shadow: 2px 2px magenta;
}

marquee {
  color: hotpink;
}

nav {
  text-align: center;
  margin-bottom: 20px;
}

nav a {
  color: #00ffcc;
  text-decoration: none;
  margin: 0 10px;
}

nav a:hover {
  color: hotpink;
  text-decoration: underline;
}

.box {
  border: 2px dashed #00ffcc;
  padding: 15px;
  margin: 20px 0;
}

.shows li {
  list-style: square;
}

.store {
  display: flex;
  gap: 30px;
}

.item img {
  width: 120px;
  border: 1px solid #00ffcc;
}

button, input, textarea, select {
  background: black;
  color: #00ffcc;
  border: 1px solid #00ffcc;
  font-family: "Courier New", monospace;
}

button {
  cursor: pointer;
}

.order-btn:disabled {
  color: red;
  border-color: red;
  text-decoration: line-through;
  cursor: not-allowed;
}

.small {
  font-size: 12px;
  color: gray;
}

#guestbook-entries {
  background: #111;
  border: 1px solid #00ffcc;
  padding: 10px;
  margin-bottom: 10px;
  max-height: 200px;
  overflow-y: scroll;
}

.guest-entry {
  border-bottom: 1px dotted #00ffcc;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

textarea {
  width: 100%;
  height: 60px;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

footer {
  text-align: center;
  font-size: 12px;
  color: gray;
}.group-photo {
  text-align: center;
  margin: 20px 0;
}

.group-photo img {
  max-width: 100%;
  height: auto;
  border: 3px solid hotpink;
  border-radius: 8px;
  box-shadow: 0 0 10px #0f91ff;
}
.gallery-item img {
  max-width: 600px; /* limits the width */
  width: 90%;       /* scales down on smaller screens */
  height: auto;
  display: block;
  margin: 0 auto;
  border: 2px solid hotpink;
  border-radius: 4px;
  box-shadow: 0 0 10px #0f91ff;
}
