.home_content {
    margin-bottom: 1.7rem;
}

.home_content h1{
    margin: 0;
    line-height: 4.5rem;
    margin-bottom: 4.3rem;
}

.home_content h3{
    margin-bottom: 1.7rem;
}

.home_content p{
    margin-bottom: 1rem;
    margin-top: 0;
}

.project_home{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.project_home_part{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 0.5;
}

.project_home_item{
    display: flex;
    flex-direction: column;
    flex: 0.5;
    border: 2px solid;
    border-radius: 28px;
    padding: 1rem;
    color: black;
    margin: 1rem;
    position: relative;
}

.project_home_item a{
    color: black !important;
}

.project_home_item_text{
    margin: 1rem;
    display: none;
    position: absolute;
}

.project_home_item:hover{
    background-color: #cecece;
    color: black;
}

.project_home_item_title{
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.project_home_item_descri{
    font-size: 1rem;
}

.project_home_item_image{
    display: flex;
    margin: auto;
}

.project_home_item_image img{
    width: auto;
    margin: auto;
    max-height: 13vw;
    border-radius: 28px;
    position: relative;
}

.project_home_item:hover .project_home_item_text{
    display: block;
}

.project_home_item:hover .project_home_item_image img{
    opacity: 0.2;
}

@media only all and (max-width: 90em){
    .project_home_part{
        flex-direction: column;
    }

    .project_home_item_image img{
        max-height: 20vw;
    }
}

@media only all and (max-width: 60em){
    .project_home{
        flex-direction: column;
    }

    .project_home_item_image img{
        max-height: 25vw;
    }

    .project_home_item .project_home_item_text{
        display: block;
    }
    
    .project_home_item .project_home_item_image img{
        opacity: 0.2;
    }
}

@media only all and (max-width: 40em){
    .project_home_item_image img{
        max-height: 60vw;
    }

    .project_home_item{
        padding: 0.5rem;
        margin-left: 0;
        margin-right: 0;
    }
}