.title h1 {
    font-family: 'Amatic SC', cursive;
    font-size: 72px;
    text-align: center;
    padding-top: 15px;
}

body {
    color: rgb(54, 37, 5);
}
#store-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.item-wrap {
    width: 600px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto 50px;
    grid-template-areas:
    "item-image item-image item-image"
    "item-name item-name item-name"
    "item-price item-add detail";
    margin: 20px;
    grid-gap: 5px;
    background-color: rgb(236, 178, 70);
    padding: 25px;
    
}
.item-image {
    grid-area: item-image;
}

.item-image {
    width: 100%;
    height: 350px;
    border-radius: 30px;
}
.item-name {
    grid-area: item-name;
    font-family: "Yanone Kaffeesatz";
    padding-top: 5px;
    font-size: 48px;
    text-align: left;
}

.item-price {
    grid-area: item-price;
    text-align: left;
    text-decoration: none;
    font-family: 'Yanone Kaffeesatz';
    font-size: 32px;
}

.item-add {
    grid-area: item-add;
    max-height: 110%;
    background-color: rgb(177, 124, 26);
    border-radius: 40px;
    color: white;
    font-family: "Yanone Kaffeesatz";
    font-size: 24px;
    font-weight: 20px;
    border: none;
    cursor: pointer;
}

.item-add:hover {
    background-color: rgba(248, 206, 128, 0.287)
}

.item-detail {
    text-decoration: none;
    color: white;
    grid-area: detail;
    cursor: pointer;
    font-family: "Yanone Kaffeesatz";
    font-size: 24px;
    font-weight: 20px;
    background-color: rgb(177, 124, 26);
    border-radius: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.item-detail:hover {
    background-color: rgba(248, 206, 128, 0.287);
}


@media screen and (max-width:768px){
    .cell {
        flex-direction: column;
    }
    
    .text {
        width: 100%;
    }
    
    .cell img {
        min-width: 100%;
        max-width: 100%;
    }

    .images {
        min-width: 100%;
        max-width: 100%;
    }

    .reverse {
        flex-direction: column-reverse;
    }

    .fading-images {
        width: 100%;
        height: 250px;
    }
    
    .item-add {
        font-size: 18px;
    }

    .item-wrap {
        margin: 0;
        margin-bottom: 20px;
        padding: 10px;
        
    }

    .item-image {
        width: 100%;
        height: auto;
        border-radius: 30px;
    }

    .item-add {
        font-size: 3vw;

    }
}