* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: black;
  color: white;
  font-family: 'Cinzel', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  /* position: relative; */
}
.poster {
  position: absolute; /* position: relative; */
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* NEW */
  background-color: #000;
}


.poster-overlay {
  width: 95%; /* 90vmin;*/
  height: 95%; /* 90vmin; */
  border: 2px solid white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2vmin;
  text-align: center;
}

.spacer {
  flex-grow: 1.5;  /* This controls vertical position of title */
}


.title {
  font-size: 12vmin;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
}

.subtitle {
  font-size: 5vmin;
  font-weight: 400;
  color: white;
  margin-bottom: 1.5vmin;
  margin-top: auto;
}
.footer {
  display: flex;
  justify-content: space-between;
  font-family: arial, sans-serif;
  font-size: 3vmin;
  color: gray;
}
.footer a {
  color: gray;
  text-decoration: none;
}

#introcue {
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translatex(-50%);
  color: gray;
  font-family: sans-serif;
  font-size: 1.2em;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
  z-index: 999;
}
#introcue.visible {
  opacity: 1;
}
