h1.page_title {
    font-family: 'Avenir LT Pro', sans-serif;
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 36px;
}
p.page_notes {
    font-family: 'Avenir LT Pro', sans-serif;
    color: white;
    text-align: center;
    margin: 20px;
    font-size: 18px;
}
div.product_cards{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px;
}
.product_card{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px;
    text-decoration: none; /* remove link underline */
    color: inherit; /* keep text color */
    cursor: pointer;
}

div.product_info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

img.product_image{
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);

}

h2.product_title{
    font-family: 'Avenir LT Pro', sans-serif;
    color: white;
    font-size: 24px;
    margin: 0;
}

p.product_description{
    font-family: 'Avenir LT Pro', sans-serif;
    color: white;
    font-size: 16px;
}