/* By Brian Tomasik */


.conversation {
  background-color: rgb(251, 247, 255);
  margin-left: 13%; /* Movie scripts usually leave a lot of whitespace on the left and right sides... */
  margin-right: 13%;
  padding: 0.3em;
}

.conversation p { margin: 0.5em; } /* Reduce space between paragraphs within one person's dialogue so that the separation between .dialogue_for_one_person divs is more pronounced. */

.dialogue_for_one_person + .dialogue_for_one_person { margin-top: 2em; } /* Add space between .dialogue_for_one_person divs but not above the first one. */

.name_of_a_character {
  font-variant: small-caps; /* Capitalizing character names is common in movie scripts. I did small caps rather than regular capitalization so that you can still see which letters were originally uppercase and which weren't. */
  text-align: center;
}

.parenthetical_note {
  font-style: oblique;
}