.image-container{
            display: inline-block;
            
            background-size:cover;
            background-position:center;
            /* background-color: aqua; */
            position:absolute;
            left:220px;
            top: 150px;
            width: 900px;
            height:360px;
            border-radius: 20px;
            /* opacity: 0.8; */
        }

        .cutouttext{
            background-color: white;
            /* background-color: black; */
            color: black;
            /* color: white; */
            /* font-size: 100px; */
            font-size: 5vw;
            /* vw（viewport width） 是基於視口寬度的單位。視口指的是使用者瀏覽器可見的部分。
            1vw 等於視口寬度的 1%。例如，如果瀏覽器的寬度是 1000px，那麼 1vw 就等於 10px。 */
            font-weight: bold;
            /* Center the text container */
            /* margin: 0 auto; */
            padding: 8px;
            width: 260px;
            text-align: center;
            position: absolute;/* Position text */
            top: 50%;/* Position text in the middle */
            left: 50%;/* Position text in the middle */
            transform: translate(-50%,-50%);/* Position text in the middle */
            /* This makes the cutout text possible */
            mix-blend-mode: screen;
            /* mix-blend-mode: multiply; */
            letter-spacing: 25px;
            border-radius: 20px;
        }


        /* .goodcard{
            position: absolute;
            top:90%;
            left:20%;
            width: 80%;
        } */

        .goodcard{
            /* margin-left: 200px;
            margin-top: 500px;
            margin-bottom: 300px; */
            margin: 500px 200px 100px 200px;
            width: 1000px;
            /* height:fit-content; */
        }

        .card{
            display: inline-block;
            position: relative;
            max-width: 260px;
            margin-left: 40px;
            margin-top: 20px;
            border-radius: 20px;
            border: 2px solid rgb(165, 42, 42);
        }

        .image{
            /* opacity:透明度,數值(0~1),愈低愈透明 */
            opacity: 1;
            display: block;
            width: 250px;
            height: auto;
            transition: .5s ease;
            /*背面是否可視:預設值為visible  */
            backface-visibility: hidden;
            border-radius: 20px;
            
        }

        .text{
            transition: .5s ease;
            opacity: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            text-align: center;
            background-color:rgb(165, 42, 42,0.6);
            color: azure;
            padding:10px;
            border-radius: 20px;
        }

        .card:hover .image{
            opacity: 0.3;
        }
        .card:hover .text{
            opacity: 1;
        }
        
        .goodbuy{
            border: none;
            color:rgb(232, 96, 96);
            background-color:white;
            text-align: center;
            cursor: pointer;
            font-size: 18px;
            padding: 6px;
            width: 100%;
            font-family: fantasy;
            border-radius: 1rem 0rem 1rem 0;
        }

        .goodbuy:hover{
            background-color: white;
            color:rgb(230, 151, 61);
        }
        
         