.projects_container{
    background-color: white;
    padding: 30px;
    padding-top: 50px;
}


.projects_container h1{
    text-align: center;
    margin: 20px;
    margin-top: 50px;
}

.projects_cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 5%;
    padding: 0;
}

.div_img{
    padding: 10px;
}

#capa{
    width: 100%;
    border-radius: 5px;
    height: 220px;
    box-shadow: 3px 7px 14px #888888;
}

.projects_card{
    width: 30%;
    height: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    border: 3.5px solid blueviolet;
    box-shadow: 5px 10px 18px #888888;
}

.projects_card_txt p, .projects_card_txt h3{
    color: black;
    font-size: 14px;
    text-align: center;
}

.projects_card_txt h3{
    font-size: 16px;
}

.projects_card_txt{
    width: 100%;
    height: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.projects_links{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.projects_links a{
    padding: 10px;
    text-decoration: none;
    border: 2px solid black;
    color: white;
    border-radius: 10px;
    margin: 10px;
    transition: 0.5s;
}

.projects_links a img{
    height: 30px;
    width: 30px;
}

.projects_links a:hover{
    background-color: rgb(121, 120, 120);
    border: 2px solid white;
}