*{
    margin: 0;
    padding: 0;
    font-family: poppins;
    box-sizing: border-box;
}
.cont{
    overflow: hidden;
    /* width: 100%; */
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.card{
    min-width: 369px;
    height: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;  
}
.card p{
    background: #fff;
    padding: 2%;
}
.block{
    display: block;
}