/* 
    Authors: Oakley Wysote Rain Gray, Ross Douglas Campbell
    Created: January 29th, 2021
    For: Specific styling for the "Meet The Designer" page
*/

#artistPicture{
    height: 20rem;
    width: 20rem;
    border-radius: 20rem;
    margin-right: 2rem;
    box-shadow: 0rem 0rem 1rem rgb(226, 217, 217);

}

.gallery{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1rem;
}

.galleryItem{
    background-color: #ffffff;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0rem 0rem 1rem rgb(226, 217, 217);
    padding: 1rem;
}



.galleryItem img{
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 20rem;
    border-radius: 2rem;
    box-shadow: 0rem 0rem 1rem rgb(226, 217, 217);
}