body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.cover{
    width: 100%;
    height: 100%;
    display: flex;
    column-gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.cover .card{
    flex: 1 1 30%; /*grow | shrink | basis */
    display: flex;
    justify-content: center;
    flex-direction: column;
   
}
.cover .card label{
    margin-top: 5px;
    font-size: 15px;
    font-weight: bold;
    color : #000
}
.cover .card img{
    box-shadow: 0 1px 6px 0 #20212447;
    height: 300px;
}