.gallery__img {
    object-fit: cover;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 15px;
}
.gallery__img:hover {
    transform: scale(1.03);
}
.gallery__img--big {
    height: 400px;
}
.gallery__img--small {
    height: 200px;
}
.modal {
    width: 100%;
    min-height: 100vh;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    display: none;
}
.modal__content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.modal__img {
    width: 70%;
}
.modal__boton {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #DE423A;
    font-size: 2em;
    text-align: center;
    border-radius: 50%;
    font-family: monospace;  
}
.modal--open {
    display: block;
}

