a {
    text-decoration: none;
}

.flex-position {
    /*height: 100%;*/
    width: 100%;
    flex: 1;
    margin: 5px;
}

img {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
}

.card {
    display: inline-flex;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
    border: 2px solid green;
    border-radius: 15px;
    padding: 10px;
    width: calc(50% - 5px);
    transition: transform .3s;
    overflow: hidden;
    margin-bottom: 5px;
    margin-right: 5px;
    cursor: pointer;
}

.col-recipe {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.row-recipe {
    width: 100%;;
}

.card button {
    z-index: 100;;
}

.card:hover {
    /* cursor: pointer; */
    transform: scale(0.95);
}

#wrapper {
    max-width: 1400px;
    margin: 20px auto 0 auto;
    padding-right: 0px;
}

.title_favorite {
    font-size: 20px;
}

.favorite {
    float: right;
    line-height: 18px !important;
}

.favorite:hover {
    font-weight: bold !important;
}

#tags {
    text-align: left;
    font-size: 20px;
}

.col {
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 1.5rem;
}

#site_title {
    text-align: center;
    margin-top: 3px;
    margin-bottom: 8px;
}

@media only screen and (max-width: 479px) {
    .card {
        width: 100%;
    }
}