h1,
h2 {
    color: #fff;
    font-size: 40px;
    text-align: center;
    margin: 30px 0;
    /* border: 1px solid red; */
}

h2 {
    font-size: 20px;
    margin: 1rem auto;
    grid-column-start: 1;
    grid-column-end: -1;
}

p.leyenda_loved {
    color: #ffffffcb;
    text-align: center;
}

.galeria {
    /* height: 20vh; */
    /* background: rebeccapurple; */
    padding: 1rem;
    display: grid;
    place-items: center;
    gap: 1rem;
    grid-auto-rows: auto;
    /* grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); */
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.galeria>p {
    color: #fff;
    margin: 3rem 0;
}

.galeria__card_foto {
    /* width: 100%; */
    padding: 5px;
    background: rgba(255, 255, 255, 0.585);
    border-radius: 5px;
    display: flex;
}

.galeria__card_foto>picture {
    /* display: block; */
    width: 100%;
    border-radius: 5px;
    background: #f0f0f09a;
}

.galeria__card_foto>picture>img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

a.link {
    text-align: center;
}