@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.counter {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #f7f7f7;
    text-align: center;
    line-height: 20px
}

section {
    min-height: calc(100vh - 56px);
    background-color: rgb(237 237 237 / 75%);
}

.product {
    margin: 20px 0;
}

.product img {
    padding: 10px;
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.product a {
    width: 80%;
    margin: 0 auto;
}

td i{
    cursor: pointer;
}