.main{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .container{
    width: 80%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.main .container .card{
    flex: 1 1 250px;
    padding: 15px;
    border: 2px solid gray;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
    border-radius: 10px;
}

.main .container .card img{
    width: 50px;
    height: 50px;
    
}