.photographersGrid{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
}

.photographer{
    margin: auto;
}

.portrait{
    width: 250px;
    height: 250px;
    margin: auto;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.name, .location, .tagline, .price{
    text-align: center;
    font-family: var(--font-dm-sans);
}

.name{
    color: #D3573C;
    font-size: 40px;
    font-weight: normal;
    margin: 15px 0;
}

.location{
    color: #901C1C;
    font-size: 20px;
    margin: 5px;
}

.tagline{
    color: black;
    font-size: 16px;
    margin: 5px;
}

.price{
    color: #757575;
    font-size: 15px;
    margin: 5px;
}