* {
    margin: 0px;
    padding: 0px;
}

body {
    /* background-color: #CBC5B5; */
    background-color: #f3f3f3;
    font-family: "Noto Serif", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

a:visited {
    color: #705388;
}

p {
    margin-bottom: 10px;
}

body h1:first-of-type {
    margin-top: 50px;
}

h1 {
    margin-top: 50px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
}

.about-container {
    display: grid;
    grid-template-columns: 2fr 3fr;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
}

.services-content h3 {
    text-align: center;
}

.community-outings-icon {
    background: url("/assets/images/community-outings-icon.png") center no-repeat;
    background-size: 128px 128px;
    width: 128px;
    height: 128px;
    margin: 0px auto;
}

.one-one-therapy-icon {
    background: url("/assets/images/one-one-therapy.png") center no-repeat;
    background-size: 128px 128px;
    width: 128px;
    height: 128px;
    margin: 0px auto;
}

.parent-training-icon {
    background: url("/assets/images/family-group-icon.png") center no-repeat;
    background-size: 128px 128px;
    width: 128px;
    height: 128px;
    margin: 0px auto;
}

#about-headshot {
    border-radius: 50px;
    margin-top: 50px;
    background: url("/assets/images/headshot.png") center no-repeat;
    width: 250px;
    height: auto;
}

#banner {
    margin: 0px auto;
    text-align: center;
}

#banner img {
    content: url("/assets/images/lavendar_aba_long_banner.png");
    /* height: 400px;
    width: 400px; */
}
/* #banner-img {
    background-image: url("/assets/images/lavender_aba.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 400px 400px;
    
} */

#nav {
    max-width: 100%;
    background-color: #705388;
    padding: 10px 0px;
    color: white;
}

.nav-bar a {
    padding: 0px 10px;    
    color: inherit;
    text-decoration: none;
}

.nav-bar a:hover {
    text-decoration: underline;
}

.content {
    max-width: 700px;
    margin: 0px auto;
}

footer {
    margin-top: 50px;
    background-color: #705388;
    color: white;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

footer ul {
    list-style-type: none;
}

@media only screen and (max-width: 760px) {
    .content {
        margin: 0px 20px;
    }

    .nav-bar {
        margin: 0px 10px;
    }

    .about-container {
        display: block;
        margin: 0px 20px;
    }

    #about-headshot {
        border-radius: 0px;
        margin: 50px auto;
        background-image: url("/assets/images/headshot-landscape.png");
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 300px;
    }

    .services-content {
        display: block;
    }

    .footer-content {
        display: block;
    }

    .footer-content > div {
        margin: 25px 0px;
    }

    #banner img {
        content: url("/assets/images/lavender_aba_short_banner_alpha.png");
        height: 300px;
        width: 300px;
    }
}