html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}
main {
    /* Just an arbitrary width */
    width: 1080px;
    margin: 0 auto;
    padding: 10px;
    /* background-color: rgba(0, 0, 0, 0.1); */
    /* background: rgba(235, 15, 147, 0.2); */
    background: rgba(235, 15, 147, 0.2);
    border: 20px solid rgba(235, 10, 235, 0.9);

 
}

/* Focusing on section elements that are a direct parent of the main element */
main>section {
    margin: 10px;
    /* No margin on TB but 20px on LR */
    padding: 20px;
    border: 1px solid black;
}

/* Focusing on H2 elements that are a direct parent of the section elements */
main>section h2 {
    font-size: 1.5em;
    background: black;
 
}

/* Now for the other headings... 3-6 */
main>section h3 {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
}

main>section h4 {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
}

main>section h5 {
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
}

main>section h6 {
    font-size: 10px;
    font-weight: normal;
    font-style: normal;
}

main>section h2 {
    /* font-weight: bold; */
    font-weight: 400;
    padding: 10px;
}

main>section#cs-hero h2 {
    /* font-weight: 300; */
    font-weight: 900;
    font-size: 1.6em;
    /* padding: 10px; */
}

main>section h3 {
    font-weight: bold;
    padding: 30px 10px 20px 10px;
}

main>section h4,
main>section h5,
main>section h6 {
    /* font-weight: bold; */
    padding: 10px;
}

main>section>p {
    padding: 40px 0px 0px 0px;;
    line-height: 1.25em;
    color: black;
    /* color: aliceblue; */
    color: rgba(235, 10, 235, 1);
    text-align: left;
}

main a:link {
    color: green;
}

main a:visited {
    color: red;
}

main a:hover {
    color: orange;
}

main a:active {
    color: navy;

}

/* Basic CSS for Blockquotes */
section>blockquote {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    font-size: 2em;
    font-style: italic;

}

/* Basic CSS for an Ordered List */
section>ol {
    list-style-type: upper-alpha;
    margin-left: 24px;
}

/* Basic CSS for an Unordered List */
section>ul {
    list-style-type: disc;
    margin-left: 24px;
}

/* Basic CSS for a Definition List */
/* section>dl {
 
} */

section>dl>dt {
    font-weight: bold;
}

section>dl>dd {
    font-style: italic;
    margin-left: 24px;
}

/* Basic CSS for the Figure and Figcaption */
section>figure {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

section>figure>img {
    border: 2px solid black;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    /* max-height: 500px; */
}

section>figure>figcaption {
    font-size: smaller;
    font-style: italic;
 
}
div.slideshow-container {
    display: flex;
    justify-content: center;
    align-content: center;
    width: 500px;
}

/* Question for Clayton 174 */

div.text {
    /* display: flex;
    justify-content: center; */
    color: black;
    /* padding-right: 20px; */
}

/* The Row of Images */
div.row-of-images {
    outline: thin solid gray;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

div.row-of-images a {
    border: thin solid blue;
}