*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    height:100%;
    width:100%;
}
.cards{
    position: relative;
    left:10%;
    width:80%;
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
    font-family:  Helvetica, sans-serif;
    flex-direction: column;
}
.shoes , .watch ,.earphone ,.mobile , .marshall , .laptop{
    background-color:white;
    width: 25%;
    height:45%;
    margin:5px;
    text-align: center;
    border-radius: 10%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}    
h3{
font-size:24px;
padding-bottom:5px;
font-weight: 700;
}
p{
    font-size:18px;
    padding-bottom:8px;
}
i{
    font-size: 20px;
}
.cards img{
    margin:20px 0px 12px 0px;
    object-fit: cover;
    height: 150px;
    width:150px;
    border-radius:20%;
}
button{
    display: block;
    padding:12px 15px;
    border-radius: 10%;
    transform: translate(84%);
    margin: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 600; 
    background-color: #FF8401;
    border: 2px solid #FF8401;  
}
button:hover{
    background-color:transparent;
    color:#FF8401;
}