/* By Brian Tomasik */


.conversation {
  background-color: rgb(252, 241, 255);
  margin-left: 15%; /* Movie scripts usually leave a lot of whitespace on the left and right sides... */
  margin-right: 15%;
  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 {
  text-transform: uppercase; /* This is a common style in movie scripts... */
  text-align: center;
}

.parenthetical_note {
  text-align: center;
  font-style: oblique;
}