body {
  background-color: rgb(206, 151, 68);
}

#title{
  font-family: 'MinecraftiaRegular', 'Minecraftia', monospace;
  font-size: 55px;
  color: bisque;
  text-align: center;
}

#catImage {
  display: block;
  margin: auto auto;
  width: 500px;
  height: auto;
  image-rendering: pixelated;
}


#caption {
  font-family: 'MinecraftiaRegular', 'Minecraftia', monospace;
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-top: 10px;
}

#slideshow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}


.galleryRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; 
  text-align: center;
  margin-top: 10px;
  width: 100%;
}

.galleryCat {
  width: 300px;
  height: auto;
  image-rendering: pixelated;
  display: block;
  margin: 0 auto;
}

.arrow {
  width: 200px; 
  height: auto;
  image-rendering: pixelated;
  cursor: pointer;
  transition: transform 0.1s;
}

.arrow:hover {
  transform: scale(1.08);
}

.arrow:active {
  transform: scale(0.95);
}

#slideCaption {
  font-family: 'MinecraftiaRegular', 'Minecraftia', monospace;
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-top: 8px;
  max-width: 600px;
}

h2{
  font-family: 'MinecraftiaRegular', 'Minecraftia', monospace;
  font-size: 50px;
  color: bisque;
  text-align: center;
}

.randRow {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.rand-btn {
  width: 200px;          
  height: auto;
  image-rendering: pixelated;
  cursor: pointer;
  transition: transform .05s, filter .05s;
}


.rand-btn:hover  { filter: brightness(1.15); }
.rand-btn:active { filter: brightness(0.85); transform: translateY(2px); }