:root {
  /**
   * These are your style variables. Change them however you like.
   */
  /* Main document font */
  --font-family: 'PT Sans','Open Sans',"Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Headings font */
  --headings-font-family: "PT Sans Caption",var(--font-family-sans-serif);

  /* Document background color */
  --body-bg: #E4CDD4;
  /* Text block background color */
  --content-bg: rgba(202,158,185, 0.4);
  /* Text color */
  --body-color: #3A2D42;
  /* Choice link text color */
  --link-color: #7D6393;
  /* Choice link background color */
  --link-button-background: rgb(202, 158, 185);
  /* Choice link background color on hovering the mouse over the link */
  --link-button-background-hover: var(--body-color);
  /* Choice link text color */
  --link-button-foreground: var(--body-color);
  /* Choice link text color on hovering the mouse over the link */
  --link-button-foreground-hover: var(--body-bg);
}

/**
 * That's it for easy customizations.
 * The rest will make sense only if you know CSS.
 */
body {
  font-family: var(--font-family);
  background-color: var(--body-bg);
  color: var(--body-color);
}
a {
  color: var(--link-color);
}
h1,h2,h3 {
  font-family: var(--headings-font-family);
  font-weight: bold;
  text-align: center;
}
h1 {
  color: #333;
}
h2 {
  color: #666;
}
#page {
  background: var(--content-bg);
  border-radius: 5px;
  margin-top: 1rem;
  padding-top: 0.5rem;
}
.control {
  margin-bottom: 0.5rem;
}
#restart {
  float: right;
}
#content {
  .subtitle {
	display: none;
  }
}
#options {
  border: 1px solid #876;
  padding: 0;
  list-style-type: none;
  border-radius: 4px;
}
#options:empty {
	display: none;
}
#options li {
	background-color: var(--link-button-background);
	padding: 0.5em;
	border-bottom: 1px solid #876;
}
#options li,
#options li a {
  color: var(--link-button-foreground);
}
#options li:hover {
	background-color: var(--link-button-background-hover);
	cursor: pointer;
}
#options li:hover,
#options li:hover a {
  color: var(--link-button-foreground-hover);
}
#options li:last-child {
	border-bottom: none;
}
#options .subtitle {
	display: block;
	font-size: 0.9rem;
	font-style: italic;
}

.room-start {
  border-top: none;
}
