body{
    background-color: rgb(88, 88, 87);
}
.anakutu { 
    display: flex;
    justify-content: space-between; 
    margin: 40px auto;
    max-width: 1200px; 
    flex-wrap: nowrap;    
    gap: 20px;          
}

.kutu {
    width: 200px;       
    height: 562px;     
    border-radius: 12px;
    text-align: center;
    padding: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}



.kutu:nth-child(1) { background-color: #ff6f61; color: #333;   } 
.kutu:nth-child(2) { background-color: rgb(177, 173, 173); color: #333;  } 
.kutu:nth-child(3) { background-color: rgb(205, 55, 55); color: #333;  } 
.kutu:nth-child(4) { background-color: rgb(42, 139, 139); color: #333; } 
.kutu:nth-child(5) { background-color: #92a8d1; color: #333;  } 

.resim {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.yazi {
    font-size: 18px;
    margin: 5px 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.fiyat {
    font-size: 16px;
    text-decoration: line-through;
    margin: 5px 0;
}

.buton {
    background-color: rgba(0,0,0,0.6);
    padding: 10px 25px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.buton:hover {
    background-color: rgba(154, 126, 126, 0.8);
    color: black;
    transform: scale(1.05);
}
