main div {
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 5.5%;
}

.top h1 {
    font-size: 4rem;
}

main a {
    text-decoration: none;
    color: #333;
    display: block;
    text-align: center;
}


/*cards related content*/
.card {
    display: flex;
    width:  255px;
    height:  300px;   /*280 to 300*/
    box-shadow:  0  0  10px rgba(0,  0,  0,  0.1);
    overflow: hidden;
    border-radius:  10px;
    flex-direction: column;
    background-image: url('../images/solo_card.png');
    background-size: 100% 100%;
    padding-left: 5px;
    margin: 1% 2.5%;
    transition: box-shadow 0.3s ease;
}


/*inside the cards*/

main article img{
    width: 220px;
    height: 140px;
    border-radius: 8px;
    filter: drop-shadow(0 0 0.60rem black);
}

main .image-container {
    margin: 19px 0 0 11px;
    overflow: visible;
    height: 50%; /*all images same height*/
    width: 80%;
    justify-content: center;
    align-items: center;
}

main article dt {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 3%;
}

main article dd {
    margin: 4%;
    color: #5A5A5A;
}