.content{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.content h1{
    margin-top: 24px;
}

.greetingAbout h1{
    width: 100vw;
    text-align: center;
    height: 100px;
    line-height: 100px;
    background: linear-gradient(90deg, rgba(84, 175, 230, 1) 0%, rgba(0, 129, 209, 1) 100%);
    color: #FFFAF9;
    margin: 0;
}
.contentAbout h2{
    text-align: center;
    margin: 48px;
    padding: 0px 12px;
}
.contentAbout p, .greetingAbout p{
    line-height: 24px;
    margin: 12px 24px;
}
.contentAbout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 2rem;
}
.christie, .shea, .alex, .nick {
    flex: 1 1 300px;
    max-width: 350px;
}
.christie img, .shea img, .alex img, .nick img {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1; /* Keeps it a square */
    object-fit: cover; /* Ensures full coverage without distortion */
    border-radius: 50%;
    box-shadow: 0px 0px 9px black;
    display: block;
    margin: 24px auto 12px auto; 
    transition: all 0.3s ease-in-out;
}

.CTAcontainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #54AFE6;
}

/*--------------------------tablets------------------*/
@media screen and (min-width: 650px){
    .contactButton{
        margin-bottom: 24px;
    }
}

/*------------------desktop-----------------------*/

@media screen and (min-width:768px){
    .greetingAbout{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .blurbAbout{
        width: 50%;
    }
    #aboutBtn{
        position: static;
    }
    #footerAbout footer{
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        width: 100%;
    }
}