body {
    background-color: bisque;
    font-family: Arial;
}

.kart {
    width: 600px;
    padding: 15px;
    height: 400px;
    display: flex;
    background-color: antiquewhite;
    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;
}


.but{
    background-color: rgb(212, 219, 168);
    border-radius: 100px 100px 100px 100px;
    display: block;
    box-shadow: 5px 5px 5px black;
    transition: 1s;
    
    
}
.but:hover{
    background-color: rgb(163, 175, 135);
    color: gray;
    transition: 1s;
    box-shadow: 5px 5px 5px rgb(212, 219, 168);
    
}
h1{
    cursor: pointer;
}
h2{
    cursor: default;
}
p{
    cursor: default;
}


