body {
    font-size: 18px; /* Enlarges the text */
    line-height: 1.7; /* Adds vertical breathing room between lines */
@media screen and (max-width: 600px) {
    font-size: 18px; /* Enlarges the text */
    line-height: 1.7; /* Adds vertical breathing room between lines */
   font-family: Arial, Helvetica, sans-serif;
}
.sonnet_title {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
	}
.sonnet_author {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
 font-weight: bold;
	}

/* Container to centralize and style the poem */
.poem {
  max-width: 600px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* Style for each stanza */
.poem p {
  margin-bottom: 1.5em; /* Creates the space between stanzas */
  padding-left: 2em;    /* Shifts the poem away from the edge */
  /*text-indent: -2em;*/   /* Pulls only the FIRST line of code back out */
}

/* Style for the links */
.sonnet_links {
/* unvisited link */
a:link {
  color: 000099;
}

/* visited link */
a:visited {
  color: 009900;
}

/* mouse over link */
a:hover {
  color: ff0000;
}

/* selected link */
a:active {
  color: 990000;
}
}
