/* user/production */
body.production, .main.landing.production {
  height: 100%;
  min-height: 80vh;
}
.main.landing.production .scene, .main.landing.production .index {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100vh;
  margin-bottom: 2rem;
  min-height: -moz-calc(100vh - 2rem));
  min-height: -webkit-calc(100vh - 2rem)));
  min-height: calc(100vh - 2rem);
}
.main.landing.production .scene {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100vh;
  margin-bottom: 2rem;
  min-height: -moz-calc(100vh - 12rem));
  min-height: -webkit-calc(100vh - 12rem)));
  min-height: calc(100vh - 12rem);
}
.bottom-nav.nav-suggestion {
  margin-top: 2rem;
  text-align: center;
}
.scene-nav {
  text-align: center;
}
@keyframes magnified{
    0%{
    transform: scale(1.2,1.2);
    }
    70%{
    transform: scale(1.2,1.2);
    }
    100%{
    transform: scale(1,1);
    }
}
.enter-img img {
  max-height: 50vh;
  border-radius: 2rem;
  max-width: 90vw;
  text-align: center;
}
.enter-img.pulsate img {
  animation: pulse 2s infinite, magnified 2s infinite;
}
/* one button to rule them all? */
button.vote, a.vote  {
  width: 69%;
  padding: 0.5em 1em;
  margin: 2.5em 0;
  border: 2px solid white;
  border-radius: 1rem;
  cursor: pointer;
  line-height: 2rem;
  background: blue;
  color: white;
  opacity: 0.8;
  font-size: 1rem;
}
a.vote {
  text-decoration: none;
  background: grey;
}
button.vote:enabled:active, a.vote:enabled:active {
  background-color:white;
}
button:disabled {
  opacity: 0.5;
}
.two-buttons button.vote {
  width: 40%;
  max-width: 200px;
}
.two-buttons:first-child button.vote {
    margin-right: 20px;
}
.two-buttons:last-child button.vote{
    margin-left: 20px;
}

a.href-button {
  color: black;
  background-color: white;
  border: 2px solid;
  padding: 5px 15px 5px 15px;
  border-radius: 20px;
  text-decoration: none;
}
.medium-button {
  min-width: 120px;
  line-height: 1.5rem;
  text-align: center;
}
.inline-block {
  display: inline-block;
}
h1.act-name {
  text-align: center;
}
.text-display {
  background: white;
  padding: 2rem;
}
.center {
  text-align: center;
}
div.winner {
  top: 30vh;
  display: none;
  color: white;
  background-color: var(--colour-two);
  z-index: 99;
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: fit-content;
  padding: 0.5rem;
}
div.question-text {
 margin-top: 2rem;
 margin-bottom: 2rem;
}
div.actions .not-allowed {
    text-align: center;
}
div.scene.last-scene {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
