/*  These colors are available from the 1st style sheet, styles.css.  

:root {
    --primary-color: #fce138;
    --secondary-color: #024e76;
    --tertiary-color: #39a6b2;
}   */ 

.hero {
    background-position: bottom;
    height: auto;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    color: var(--primary-color);
    display: inline-block;            /* don't extend the full width */
    border-bottom: 4px solid color var(--primary-color);
    padding: 0 80px 15px 80px;
    font-weight: normal;
    font-size: 42px;
    font-style: italic;
}

.secondary-content {
    width: 80%;
    margin:  0 auto;   /* center on the page */
    color: var(--secondary-color);
}

.secondary-content h3 {
    font-size: 25px;
    margin: 20px 0 20px 0;
}
.secondary-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 20px 0 20px 0;
}

.secondary-content ul {
    margin: 15px 20px 15px 20px;
}

.secondary-content li {
    color: var(--tertiary-color);
    margin: 10px 0 10px 0;
}