body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  transition: background-image 0.5s ease-in-out;
  font-family: sans-serif;
  background-color: #1e1e1e;
  color: white;
  text-align: center;
  padding: 50px;
}
/* .container {
  background: #232323e2;
  padding: 20px;
  border-radius: 8px;
  display: inline-block;
} */
.container {
  background-color: rgba(0, 0, 0, 0.6); /* semi-transparent dark overlay */
  backdrop-filter: blur(10px);         /* this is the blur effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  max-width: 80%;
  margin: auto;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
}
.output {
  margin: 20px 0;
  font-size: 18px;
  background: #111;
  padding: 10px;
  border-radius: 4px;
}
.part-opener {
  color: #ff0000;
  font-weight: bold;
}
.part-excuse {
  color: #3d56f8;
}
.part-closer {
  color: #e200d5;
  font-style: italic;
}

.part-pivot {
  color: orange;
  font-style: italic;
}


#slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 30s ease-in-out infinite;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(-2%, -2%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
#generateButton {
  border: none;
  color: #FFF;
  background: #1e7d128b;
  padding: 1.0em;
  border-radius: 0.5em;
  transition: 300ms;
}
#generateButton:hover {
  background: #1e7d12;
  box-shadow: 0px 3px 5px rgba(0,0,0,0.5);
}
#generateButton:active {
  background: #14540c;
  box-shadow: inset 0px 3px 5px rgba(0,0,0,0.5);
}
footer {
  color:#000;
  font-size: 80%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 1.0em;
}