body{
    margin: 0;
    padding: 0;
}

.hdr{
    width: 98.56%;
    background-color: #222;
    text-align: center;
    align-items: center;
    padding: 10px;
}

.hdr img{
    height: 80px;
}

.list{
    margin-top: 50px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item{
    margin: 20px;

}

.item img{
    height: 30px;
    transition: 200ms;
}

.item img:hover{
    transform: scale(1.15);
}

.item button{
    border: none;
    cursor: pointer;
    background-color: RGBA(255,255,255,0.1);
}

.catalog{
    display: flex;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.card{
    margin: 20px;

    border-radius: 30px;
    width: 330px;
    border: #4b4b4b solid .8px;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.card img{
    height: 250px;
    width: 330px;
}

.info{
    background-color: grey;
    border-radius: 0px 0px 29px 29px;
    padding: 20px;
    color: aliceblue;
    display: flex;
    flex-wrap: inherit;
    height: 22vh;
}

.desc{
    text-align: left;
    font-family: system-ui, sans-serif;
    font-size: 30px;
    align-items: flex-start;
}

.price{
    font-family: system-ui, sans-serif;
    font-size: 20px;
    font-weight: bold;
    align-self: flex-end;
    margin: 0;
}
