#site-header {
    background-color: rgb(197, 240, 197);
}

.navigation-bar {
    background-color: rgb(197, 240, 197);
}

button {
    background-color: rgb(197, 240, 197);
}

#main {
    clear: both;
    margin: 5px auto;
    border: 1px rgba(197, 240, 197, 0.861) solid;
    background-color: aliceblue;
}

.article-header {
    display: flex;
    align-items: center;
    /* vertically align image and text */
    gap: 15px;
    /* space between image and text */
    margin-bottom: 10px;
    margin-left: 2rem;
}

.article-header-text {
    margin-top: 1rem;
}

.article-header-text h1 {  
    margin-bottom: 10px;
}


ul {
    line-height: 1.5rem;
}

li {
    margin-left: 2rem;
     font-family: "Lato", sans-serif;
  font-weight: 200;
  font-size: 1.1em;
  line-height: 1.4em;
}


#screenshots, #client-review {
    width: 100%;
}



@media only screen and (min-width: 763px) {

    img.headshot {
        margin-top: 1.5rem;
        width: 70%;
    }
      h1 {
        font-family: "Lato-Light";
        font-size: 1.5em;
        margin: 1rem 0 0.2rem 0rem;
        font-weight: 100;
    }
    h3 {
        font-family: "Lato-Light";
        font-size: 1.3em;
        margin: 2rem 0 0.7rem 2rem;
        font-weight: 800;
    }
#screenshots, #client-review {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
    #screenshots img {
        margin: 6px;
        width: 14%;
        /* Typical iPhone width */
        height: auto;
        /* Typical iPhone height */
        border-radius: 30px;
        /* Large radius for a smooth, "squircle" curve */
        border: 4px solid #ad9999;
        /* Simulates the outer frame */
        background-color: #fff;
        /* Content area */
        overflow: hidden;
        /* Ensures content doesn't break the rounded corners */
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.2);
        /* Depth effect */
    }

    p {
        margin-left: 2rem;
        margin-right: 3rem;
    }
}


@media screen and (min-width: 320px) and (max-width: 760px) {
    img.headshot {
        margin-top: 1.1rem;
        width: 90%;
    }

    .article-header {
        margin-left: 0;
    } 
    #screenshots {
    margin: 2rem;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
    scrollbar-width: none; /* hide scrollbar on Firefox */
    gap: 1rem;
    padding: 1rem;
}

#screenshots::-webkit-scrollbar {
    display: none; /* hide scrollbar on Chrome/Safari */
}

#screenshots img {
    flex: 0 0 auto; /* prevent images from shrinking */
    scroll-snap-align: center;
    width: 60vw; /* good size for mobile screens */
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    border: 6px solid #ad9999;
    background-color: #fff;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5), 0 0 5px rgba(223, 211, 211, 0.2);
}

    h1 {
        font-family: "Montserrat-Regular";
        font-size: 1.2em;
    }



    
}