    .lexend {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    }

body {
    font-family: 'lexend', sans-serif;
    background-color: #F7F5EF;
}

/*      TAGLINE STYLING      */

.tagline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    margin-top: -3em; margin-bottom: -2rem;
}
    .tagline-item {
        display: block;
        padding: 2%;
    }

/*-----------------------------------*/

/*      MAIN STYLING        */

.main-container {
    width: 80%;
    min-width: 300px;
    margin: 0 auto;
}

.section-container {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

header {
    text-align: center;
    justify-content: center;
}

    h1 {
    font-size: 4em;
    max-width: 100%;
    margin: 1.5em auto;
    margin-top: 2em;
    }

    h2 {
        font-size: 2.5rem;
        margin: 2em auto;
    }

    p {
        line-height: 1.5rem;
        display: block;
    }

    hr{
        margin: 6em auto;
        height: 0.17rem;
        background-color: black;
        border: none;
    }

/*      --------------------        */
/*      INTRODUCTION SECTION     */  

.intro-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    font-size: 1.25rem;
    margin: 4em auto;

}

.intro {
    font-size: 1.2rem;
    padding: 1em;
}

.intro-left {
    display: flex;
    margin-left: auto;
    height: 100%;
    width: 100%;
}

svg {
margin: auto;
}

.first-line {
    font-style: italic;
    font-size: 1.1em;
    margin-top: 1.5em;
    color: rgb(65, 141, 3);
}

.main-description {
    font-size: 1.1em;
    margin: 2em 0;
}

.last-line-decription {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 1.5em;
    color: rgb(65, 141, 3);
}

/*  STORY PEOPLE IMPACT DESCRIPTIONS    */

.focus-heading {
    text-decoration: underline;
    text-underline-offset: 0.45em;
}

.spi-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 auto;
}
    .spi-box {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        min-height: 400px;
        margin-bottom: 1em;
        padding: 2rem;
        border: 1px solid black;
        border-radius: 8px;
    }

        .spi-box h3 {
            font-size: 2rem;
            margin-bottom: -0.5rem;
        }

    .leading-line {
        font-weight: 600;
    }

    .highlight-line {
        font-weight: 550;
        margin-bottom: 2.5em;
        font-style: italic;
    }

    .learn-more-btn {
        width: 120px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.15em;
        color: rgb(45, 151, 13);
        border-radius: 8px;
        text-decoration: underline;
        text-underline-offset: 0.5em;
        padding: 1em;
        margin-top: auto;
        font-weight: 600;
    }
    
        .learn-more-btn:hover {
            color: #F7F5EF;
            background-color: rgb(123, 196, 41);
            transition: ease-in 0.15s;
        }
        .learn-more-btn:active {
            color: #F7F5EF;
            background-color: rgb(184, 201, 33);
            transition: ease-in 0.15s;
        }
        .learn-more-btn:focus {
            outline: 2px rgb(123, 196, 41) solid;
            color: rgb(66, 107, 19);        
        }

/*  ------------------------------  */        
/*      LITTLE MORE SECTION     */

.about-container {
    margin: 4rem auto;
    font-size: 1.25rem;
}

.about-leading-line {
    font-weight: bold;
    font-size: 1.15em;
    margin-bottom: 1.5em;
    color: rgb(65, 141, 3);
}

.contact-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    width: 200px;
    height: 2em;
    margin: 2em 0;
    text-decoration: none;
    background-color: rgb(20, 20, 20);
    color: #F7F5EF;
    border: 1px solid black;
    border-radius: 8px;
    padding: 1em;
}
    .contact-btn:hover {
        background-color: rgb(210, 233, 158);
        color: rgb(20, 20, 20);
        transition: ease-in 0.15s;
    }

/*      --------------------        */
/*  FOOTER ITEMS    */

footer p {
    font-size: 12px;
    text-align: center;
    margin: 3em auto;
}

/*      MEDIA SIZE CHANGES      */

@media (max-width: 1000px) {
    .spi-container {
        grid-template-columns: 1fr;
    }
    .learn-more-btn {
        margin-top: 0;
    }
    .intro-container {
        grid-template-columns: 1fr;
    }
}