main{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
}

header h1{
    color: var(--white);
}

.content{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 4rem 2rem;

    flex: 1 1 100%;

    background-color: var(--primary);

    height: 100%;

    color: var(--white);

    font-family: var(--montserrat);
}

.content .title span{
    display: block;
    text-align: center;
}

.content .title span:first-child{
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.content .title span + span{
    font-size: 2rem;
}

.lawyers{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 4rem;
    width: 100%;
    
}

.lawyer-bio{
    display: flex;
    flex-direction: column;
    align-items: center;

    flex: 0 1 33%;
    min-width: 35rem;
    margin-bottom: 2rem;
}

.lawyer-bio img{
    width: 100%;
}

.lawyer-bio .bio .name{
    display: block;
    font-size: 2rem;
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    font-weight: 700;
}

.lawyer-bio .bio p{
    font-size: 1.5rem;
}

@media (min-width: 730px){

}