.all .gallery {
    margin: 20px auto;
    box-shadow: 0 0 20px grey;
    border-radius: 35px;
    background-color: azure;
    width: 200px;
    height: min-content;
}
.gallery .mainText {
    margin: 0 0 30px;
}
.gallery .head-image {
    background-color: white;
    background-image: url(/h6/part2/img/photo-1610296669228-602fa827fc1f.png);
    background-size: cover;
    background-position: bottom;
    min-height: 80px;
    box-shadow: 0 0 15px rebeccapurple;
    border-radius: 35px 35px 0 0;
}
.gallery .person-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100%;
    display: block;
    border: 2px solid rgb(82, 142, 165);
    box-shadow: 0 0 10px rebeccapurple;
    margin: -70px auto 0 auto;
}
.gallery h1 {
    text-align: center;
    font-size: 20px;
    margin: 0vw;
    
}
.gallery p {
    text-align: justify;
    font-size: 15px;
    padding: 10px;
    margin: 0vw;
}
.gallery span {
    font-size: 15px;
    padding-left: 8px;
    padding-right: 8px;
    margin: 0;
}
.gallery button {
    display: block;
    background-color: rgb(29, 146, 74);
    width: 120px;
    height: 40px;
    color: white;
    border-radius: 15px;
    font-size: 15px;
    text-align: center;
    margin: 5px auto;
    border: none;
    box-shadow: 5px 5px 15px grey;
    
}

.gallery span:last-of-type {
    float: right;
}
.gallery .end {
    padding-top: 0;
    padding-bottom: 10px;
}
.all {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
