.galeria{
    margin-top: -3%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.receta{
    text-align: center;
    padding-top: 6%;
    margin-left:  3%;
    margin-right: 3%;
    font-family: outfit;
}
.miniatura{
    max-width: 500px;
    max-height: 250px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 25);
    transition: ease-in .15s;
    
}
.titulo{
    font-size: 1.7em;
    margin-bottom: -2%;
}
.rating{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.miniatura:hover{
    transform: scale(1.2);
    cursor: pointer;
}
.rating_num{
    font-size: 1.7em;
    font-weight: 400;
}
.star{
    height: 3em;
    width: 3em;
    align-self: center;
}
h4{
    margin-left: 1em;
    
}