body {
  color: #fff;
  background: linear-gradient(135deg, #6a0dad, #32cd32);
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header {
  text-align: center;
  color: #fff;
  background: indigo;
  padding: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

nav {
  background: #32cd32;
  padding: 10px 0;
}

nav ul {
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: color .3s;
}

nav ul li a:hover {
  color: gold;
}

main {
  text-align: center;
  padding: 50px 20px;
}

main h1 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

main p {
  font-size: 1.2rem;
}

footer {
  text-align: center;
  color: #fff;
  background: indigo;
  width: 100%;
  padding: 10px;
  position: fixed;
  bottom: 0;
}

button {
  color: indigo;
  cursor: pointer;
  background: gold;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: background .3s;
}

button:hover {
  background: #32cd32;
}

.gallery-thumbnails {
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  display: flex;
}

.thumbnail-item {
  text-align: center;
  cursor: pointer;
  background-color: #ffffff1a;
  border: 2px solid gold;
  border-radius: 5px;
  width: 150px;
  padding: 5px;
  transition: transform .2s ease-in-out;
}

.thumbnail-item:hover {
  transform: scale(1.05);
}

.thumbnail-item img {
  object-fit: cover;
  border-bottom: 1px solid gold;
  width: 100%;
  height: 100px;
  margin-bottom: 5px;
}

.thumbnail-item p {
  color: #fff;
  margin: 5px 0 0;
  font-size: .9rem;
}

.lightbox {
  z-index: 1000;
  background-color: #000000d9;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  transition: opacity .3s ease-in-out;
  display: block;
}

#lightbox-caption {
  text-align: center;
  color: #ccc;
  width: 80%;
  max-width: 700px;
  margin: 15px auto;
  padding: 10px 0;
  font-size: 1.2rem;
  display: block;
}

.close-lightbox, .prev-lightbox, .next-lightbox {
  cursor: pointer;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  transition: all .3s;
  position: absolute;
}

.close-lightbox {
  top: 15px;
  right: 35px;
}

.prev-lightbox, .next-lightbox {
  user-select: none;
  padding: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.prev-lightbox {
  left: 10px;
}

.next-lightbox {
  right: 10px;
}

.close-lightbox:hover, .close-lightbox:focus, .prev-lightbox:hover, .prev-lightbox:focus, .next-lightbox:hover, .next-lightbox:focus {
  color: #bbb;
  text-decoration: none;
}

body.lightbox-active footer {
  display: none;
}

#guestbook-entries li {
  text-align: left;
  background-color: #ffffff1a;
  border: 1px solid gold;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px 15px;
  list-style-type: none;
}

.entry-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.entry-header strong {
  color: gold;
}

.entry-timestamp {
  color: #ddd;
  font-size: .8em;
}

.entry-message {
  color: #fff;
  word-wrap: break-word;
  font-size: 1em;
}

#guestbook-form {
  background-color: #0003;
  border-radius: 8px;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  display: flex;
}

#guestbook-form label {
  text-align: left;
  margin-bottom: -5px;
}

#guestbook-form input[type="text"], #guestbook-form textarea {
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px;
}

#guestbook-form textarea {
  resize: vertical;
  min-height: 80px;
}
/*# sourceMappingURL=game.00fcb217.css.map */
