body {
    background: gray;
    font-family: Arial;
}

.kart {
    width: 250px;
    padding: 15px;
   
    background-color: cadetblue;
    border-radius: 12px;
    box-shadow: 5px 5px 5px black;
    text-align: center;
    transition: 0.5s;
}
.kart:hover{
    box-shadow: 5px 5px 5px rgb(53, 53, 53);
    transition: 0.5s;
}

.foto {
    width: 100%;
    border-radius: 10px;
}

.fiyat {
    font-size: 22px;
    color: #e60000;
    margin: 10px 0;
}
.but{
    background-color: gray;
    border-radius: 15px 15px 15px 15px;
    display: block;
    box-shadow: 5px 5px 5px black;
    transition: 1s;
    
    
}
.but:hover{
    background-color: aqua;
    color: gray;
    transition: 1s;
    box-shadow: 5px 5px 5px gray;
    
}
h1{
    cursor: pointer;
}
h2{
    cursor: default;
}
p{
    cursor:default;
}


