/**
 * The main div for the page body
 */
div.main {
    margin-top: 100px;
    margin-bottom: 100px;
    margin-right: 70px;
    margin-left: 70px;
}

div.video {
    text-align: center;
}
/**
 * Heading at the top of a page
 */
h1.center {
    text-align: center;
    font-size: 60px;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

/**
 * Heading that organizes ideas
 */
h2.normhead {
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

/**
 * Not used - potential scripture headinds
 */
h2.scriphead {
    font-size: 40px;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

/**
 * Normal paragraph text
 */
p {
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

/**
 * Scripture paragraph - should use a different font so it stands out
 */
p.scrip {
    font-size: 30px;
    font-family: Georgia, serif;
    color: black;
}

/**
 * Links that act as references to scripture
 */
a.scriplink {
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

iframe {
  display: block; /* Change iframe to a block-level element */
  margin-left: auto; /* Automatic left margin */
  margin-right: auto; /* Automatic right margin */
}