body{ /* Tag selector */
    font-family: sans-serif;
    background: linear-gradient(180deg, black, grey, black);
    margin: 0;
    padding: 20px;
}
.card{ /* Class selector*/
    width: 100%;
    padding: 8px;
    border-radius: 20px;
    border-style: groove;
    background-image: url(https://tse1.mm.bing.net/th/id/OIP.MFCjtMDulT8r4Kvn3-lgMQHaE8?r=0&rs=1&pid=ImgDetMain&o=7&rm=3);
    box-sizing: border-box;
}
.card-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 10px;
}
.content-text{
    background:linear-gradient( rgba(0, 0, 0, 0), rgba(191, 182, 182, 0.801), #fafafa) ;
    border-radius: 15px 70% 5px 5px ;
    padding: .4rem;
    
}
.card:hover{
    box-shadow: 1px 2px 3px 4px grey;
    transform: translateY(-2px);
}
img{
    width: 100%;
   height: 350px;
   border-radius: 100px 100px;
}
#judul{ /*ID Selector */
    text-decoration:underline ;
    color: rgb(255, 255, 255);
}
h1, p{ /* Grouping selector*/
    color: #000000;
}
.Harga{ 
    color: rgb(0, 143, 26);
    margin: 5px 0;
}
.btn-block{
    width: 100%;
    background: rgb(210, 105, 30);
    text-align: center;
    padding: 8px 0;
    margin-top: 8px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    color: pointer;
}
.btn-block:hover{
    background-color: #fafafa;
    border: 3px solid #d2691e;;
    color: #d2691e;
}
@media (max-width: 768px) { /* Responsive */
    .card-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 5px;
    }
}