/* Body */
body {
    margin-top: 50px;
    margin-right: 50px;
    margin-bottom: 50px;
    margin-left: 50px;
}

/* Headers */

h1 {
    font-family: Courier, Monospace;
    font-weight: bold;
    font-size: 32px;
    color: black;
}

h2 {
    font-family: Courier, Monospace;
    font-weight: bold;
    font-size: 28px;
    color: black
}

summary h2 {
    font-family: Courier, Monospace;
    font-weight: bold;
    font-size: 36px;
    color: black;
    display: inline;
}

h3 {
    font-family: Courier, Monospace;
    font-weight: bold;
    font-size: 24px;
    color: black
}

summary h3 {
    font-family: Courier, Monospace;
    font-weight: bold;
    font-size: 24px;
    color: black;
    display: inline;
}

h4 {
    font-family: Courier, Monospace;
    font-weight: bold;
    font-size: 20px;
    color: black;
}

summary h4 {
    font-family: Courier, Monospace;
    font-weight: bold;
    font-size: 20px;
    color: black;
    display: inline;
}

h5 {
    font-family: Courier, Monospace;
    font-weight: bold;
    font-size: 18px;
    color: black;
}

/* Paragraph */

p {
    font-family: Courier, Monospace;
    font-size: 16px;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: black;
    text-indent: 50px;
    line-height: 1.5;
}

summary p {
    font-family: Courier, Monospace;
    font-size: 16px;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: black;
    line-height: 1.5;
    display: inline;
}

.paraNoIndent {
    font-family: Courier, Monospace;
    font-size: 16px;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: black;
    text-indent: 0px;
    line-height: 1.5;
}

.paraAllIndent {
    font-family: Courier, Monospace;
    font-size: 16px;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: black;
    text-indent: 0px;
    margin-left: 50px;
    line-height: 1.5;
}

form {
    font-family: Courier, Monospace;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: black;
    text-indent: 0px;
    line-height: 1.5;
}

label {
    font-family: Courier, Monospace;
    font-size: 16px;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: black;
    text-indent: 50px;
    line-height: 1.5;
}


/* Lists */

.paralist {
    font-family: Courier, Monospace;
    font-size: 16px;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: black;
    line-height: 1.5;
}

.paraHalfSpaceBot {
    margin-bottom: 8px;
}

.table_of_contents {
    font-family: Courier, Monospace;
    font-size: 16px;
}

/* Tables */

table,
td {
    border: 1px solid black;
    font-family: Courier, Monospace;
    font-size: 16px;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: black;
}

th {
    border: 1px solid black;
    font-family: Courier, Monospace;
    font-size: 20px;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: black;
}


/* Links */

a:link {
    color: DarkBlue;
    text-decoration: underline;
}

a:visited {
    color: DarkSlateGrey;
    text-decoration: underline;
}

a:hover {
    color: DarkMagenta;
    text-decoration: underline;
}

a:active {
    color: DeepPink;
    text-decoration: underline;
}

.toc {
    font-family: Courier, Monospace;
    font-size: 12px;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: black;
}

/* Images */
.artistsig {
    width: 128px;
    height: 128px;
}

.imgbox {
    display: grid;
    height: 100%;
}

.center-fit {
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
}

.mapBorder {
    border-style: double;
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
}

/*Flexible Boxes*/

.container {
    display: flex;
    flex-direction: row;
}

.fixed {
    width: 200px;
}

.flex-item {
    flex-grow: 1;
}

.detSum-item {
    flex-grow: 1;
    padding-left: 20px;
}

/*Sample CSS with comments for reference
 *
 *
 * -----Font settings-----
 * font-family:"Courier New", Courier, Monospace; [font-family:"Desired Font", first general fallback, family fallback;]
 * font-size:16px; 
 * letter-spacing:0px;
 * word-spacing:0px;
 * color:black; [Use common names or #123456 (hex code of color)]
 * font-weight:normal; [or bold]
 * font-decoration:none; [use for strikethroughs or underlines]
 * font-style:normal; [use for italic]
 * font-transform:none; [use for case conversion]
 * text-indent: 50px; 
 *
 * 
 * 
 * 
 * -----Anchors (links)-----
 * a:link {color:DarkBlue} It's an unused link
 * a:visited {color:DarkGrey} It's a link you have already been to
 * a:hover {color:DarkMagenta} You are hovering over the link
 * a:active {color:DeepPink} You just clicked on the link
 *
 * <a href="url">link text</a> This goes in the html
 *
 * ul.circlelist {list-style-type:circle;} [Replace circlelist with a different list style name]
 * [Options are disc (default), circle, square, decimal,lower-roman, upper-roman, lower-latin, 
 * upper-latin, lower-alpha, upper-alpha]
 *  
 * ------Margins------
 * margin-top
 * margin-right
 * margin-bottom
 * margin-left
 * 
 */