.recipe__title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--green);
    text-align: center;
    margin-bottom: 1rem;
}

.recipe__card__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 20rem;
}

.recipe__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem;
    border: 2px solid var(--green);
    margin: 0.5rem;
    width: 8rem;
    border-radius: 10px;
    height: 10rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

.recipe__card__title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--green);
    text-align: center;
    margin-bottom: 1rem;
}

.recipe__view_button {
    width: 100%;
}

.recipe__pagination {
    display: flex;
    justify-content: space-between;
    max-width: 44rem;
}
