.card_projects {
    margin: 20px 0;
    text-align: center;
}

.card_1 {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    margin: 0 auto 20px;
    transition: transform 0.2s, box shadow 0.2s;
}

.card_1 img {
    width: 100%;
    border-radius: 8px;
}

.link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #de5a95;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.link:hover {
    background-color: pink;
}