.foto {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
}

.gallery {
    padding: 20px;
    border: 1px solid red;
    width: 500px;
    height: 400px;
}

.big_photo {
    width: 500px;
    /*width: 100%;*/
    height: 282px;
    /*height: 100%;*/
    border: 1px dotted green;
    display: flex;
    justify-content: center;
    align-items: center;
}

.big_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполняет всё пространство без
      искажений */
    display: block;    /* Убирает лишний отступ снизу */
}

.small_photo {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid blue;
}

.small_photo a img {
    border: none;
    display: block;     /*Убирает  пустоту внизу картинки*/
}

.small_photo img {
    width: 95px;
    height: 70px;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    font-weight: bold;
    border: 2px solid black;
}

.button:hover {
    background-color: hotpink;
    cursor: pointer;
}