.section_projects {
    /*outline: red 1px solid;*/
    width: 1300px;
    margin-bottom: 15px;
    /*height: 500px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.h3_projects {
    font-size: 22px;
}

.containerProjectCard {
    display: flex;
    /*outline: purple 5px solid;*/
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 50px;
    width: 100%;
}

.projectCard {
    background-color: white;
    border: #F5AE73 3px solid;
    /*outline: blue 1px solid;*/
    border-radius: 15px;
    width: 550px;
    height: 510px;
}

.pictureProject {
    /*border: orange 1px solid;*/
    width: 100%;
    height: 60%;
}

.pictureImgProject {
    border-radius: 12px 12px 0 0;
}

.contentProject {
    /*border: red 2px solid;*/
    display: flex;
    flex-direction: column;
    padding: 25px;
    height: 29%;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.techUse {
    gap: 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 15px 0;
}

.tech {
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    padding: 0 20px;
    cursor: default;
}

.html {
    outline: 3px solid #DD4B25;
    color: #DD4B25;
}

.css {
    outline: 3px solid #214CE5;
    color: #214CE5;
}

.react {
    outline: 3px solid #49CEF7;
    color: #49CEF7;
}

.js {
    outline: 3px solid #E4A126;
    color: #E4A126;
}

.api {
    outline: 3px solid #AAD742;
    color: #AAD742;
}

.responsive {
    outline: 3px solid purple;
    color: purple;
}

.build {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    cursor: default;
    color: #582D1D;
}

.linkRedirect {
    text-decoration: none;
    color: black;
}