nav :nth-child(3)::after {
    content: '';
    height: 4px;
    width: 100%;
    background-color: #dd91ff;
    position: absolute;
    left: 0;
    bottom: -4px;
    opacity: 1;
}

main {
    font-family: 'Onest', sans-serif;
    font-size: 1.25em;
    font-weight: lighter;
}

h2 {
    font-family: 'Young Serif', serif;
    text-decoration: underline;
}

main hr {
    border-top: 4px solid #dd91ff;
}

.my-recipes-container {
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recipe-card-container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 10px;
    flex-wrap: wrap;
}

.recipe-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #faefff;
    border-radius: 10px;
    padding: 10px;
    padding-bottom: 0px;
    width: 350px;
}

.recipe-card .recipe-name {
    display: flex;
    align-items: center;
    background-color: white;
    font-family: 'Young Serif';
    font-size: 1.25em;
    padding-left: 10px;
    border-radius: 5px;
}

.recipe-card .recipe-name p {
    margin: 0;
}

.recipe-card img {
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    overflow: hidden;
}

.recipe-card .recipe-ingredients {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin-top: -15px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.recipe-card ul {
    background-color: white;
    border-radius: 10px;
}
