body {
	font-family: "Consolas", "Arial", sans-serif;
	font-size: 14px;
	background: #8b2835 url(""); /*Replace later think movie image.*/
	text-align: center; /*Text is centered by default.*/
	background-size: cover;
	background-attachment: fixed;
  background-position:center;

}
ul {
  padding-left: 0;
  margin: 0;
  list-style-position: inside;
}
li {
  text-align: center; /*You can change this, but centered lists can look kind of weird.*/
  margin-left: 0px
  }

h1 {
  text-align: center;
  font-size: 20px;
  letter-spacing:4px;
  }
  
/*Use as the class of spans or divs you want to have normal left-aligned text.*/
/*You can combine classes by putting them together with a space, i.e. <div class="box left"> will be a div using "box" and "left" styles.*/
.left {
  text-align:left;
  }

/*A box that stays at a fixed height and scrolls when content gets too long.*/
.box {
  margin: 0 auto;
	overflow: auto;
	background-color: #fff;
	border: 2px solid #000;
	width: 42em;
	height: 34em;
	margin-top: 10.5%;
	padding: 0;
}

.header {
  padding: 20px;
  text-align: center;
  background: #909192;
  color: black;
  font-size: 16px;
  border-bottom: 2px solid #000;
}
.content {
  padding: 3.5em 4em;
}
.box.box-left-skinny {
  position: fixed;
  left: 10%;
  top: 51%;
  transform: translateY(-50%);

  width: 20em;
  height: 36em;

  margin: 0;       /* critical */
  padding: 0;

  overflow: auto;
  z-index: 10;
}
.box-right-skinny {
  position: fixed;       /* same as left */
  right: 10%;            /* distance from right edge */
  top: 51%;              /* vertically center like left box */
  transform: translateY(-50%);
  width: 20em;           /* same width as left box */
  height: 36em;          /* same height as left box */
  margin: 0;             /* reset margin */
  padding: 0;
  overflow: auto;
  z-index: 10;           /* same as left box */
  background-color: #fff; 
  border: 2px solid #000;
}

.box-round {
  margin: 0 auto;
	background-color: #fff;
	border: 2px solid #000;
	width: 32em;
	height: 24em;
	margin-top: 7.5%;
	overflow: auto;
	padding: 20px;
	padding-bottom: 30px;	
	border-radius: 50%;
	padding: 7.5em 6em;
}

/*A box that doesn't scroll, instead growing in height.*/
.box-noscroll {
  margin: 5% auto 4% auto;
	background-color: #fff;
	border: 2px solid #000;
	width: 32em;
	padding: 3.5em 4em;
}

/*Old box attributes. Use if you want an old-style box.*/
.old {
	margin-top: 3%;
	margin-bottom:3%;
	width: 460px;
	min-height:50px;
	padding: 20px;
	padding-bottom: 30px;	
  }
  
/*Prevent overflow of large images.*/
.box img, .box-noscroll img, .box-round img {
  max-width: 100%;
  height: auto;
  }

.movie-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 10px;
}

.movie-row img {
  width: 80px;
  height: auto;
  border: 2px solid #000;
}