/*---------------Card---------------*/
.main__container {
    height: auto;
    width: auto;
}
.card__title {
    align-items: center;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: brown;
    text-decoration: underline;
}
 .card__container img{
        height: 150px;
        margin-top: 1rem;
        margin-bottom: 1rem;
        margin-left: 1rem;
        background-color: white;
    }
/* ==================== Breakpoints =================*/
/* For Small Devices */
@media screen and (max-width: 340px) {
    .card__container img {
        height: 50px;
        margin-top: 0.1rem;
        margin-bottom: 0.1rem;
        margin-left: 0.1rem;
       }
    .card__title {
        align-items: center;
        text-align: center;
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
}

/* For Medium devices */
@media screen and (min-width:768px ) {
       .card__container img{
        height: 100px;
        margin-top: 1rem;
        margin-bottom: 1rem;
        margin-left: 1rem;
       }
}

/* For Large Devices */

@media screen and (min-width: 1120px) {
   
    .card__container img{
        height: 150px;
        margin-top: 1rem;
        margin-bottom: 1rem;
        margin-left: 1rem;
    }
    
}