.card__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.card{
    width: 325px;
    background-color: #e4e4ff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    margin: 20px;
}

.card img{
    width: 100%;
    height: auto;
}

.card_content h3{
    color: #1D293F;
    padding-top: 20px;
    font-size: 25px;
    margin-bottom: 8px;
}
.card_content p{
    padding-top: 4px;
    color: #696871;
    font-size: 15px;
    justify-content: space-evenly;
    line-height: 1.3;
    margin: 20px;
}