
.product {
    font-size: 1.4rem;
    width: 80%;
    padding: 2rem;

    border: 4px solid rgb(255, 27, 206);
    border-radius: 2rem;
    backdrop-filter: blur(5px);
    box-shadow: 4px 4px 0 black, 2px 2px 10px black, 2px 2px 20px black;
    text-shadow: 0 0 10px black, 0 0 5px black, 0 0 15px black ;
    background-color: rgba(0,0,0,0.7);

    display: flex;
    justify-content: center;
    align-items: start;
}

.product:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url(../images/curved-lines-more.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    border-radius: 2rem;
    z-index: -1;
}
 
.product img {
    max-height: 22rem;
}

.product h3 {
    font-size: 3rem;
    margin: 0;
    padding: 0;
    text-align: center;
    text-shadow: 0 0 10px black, 0 0 5px black, 0 0 15px black ;
}

.product p {
    padding-left: 1rem;
}

/* I should clean up this and opinion-style.css */
