.gallery__img {
    object-fit: cover;
    margin-bottom: 0px;
    cursor: pointer;
    transition: all 0.5s;
}
.gallery__img:hover {
    transform: scale(1.04);
}
.gallery__img {
    height: 300px;
}
.modal {
    width: 100%;
    min-height: 100vh;
    background: rgba(91,91,91,.50);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    display: none;
}
.modal__content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.modal__img {
    width: 80%;
}
.modal__boton {
    position: absolute;
    top: 10px;
    right: 10px;
    color: whitesmoke;
    font-size: 1.5em;
    cursor: pointer;
    font-weight: 150;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: gray;
    text-align: center;
    border-radius: 50%;
}
.modal--open {
    display: block;
}

