.task_con{
    width: 100%;
    height: 100vh;
    background: white;
    padding:30px 10px 10px 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project_con{
    width: 90%;
    overflow-x: auto;
    padding-bottom: 20px;
}
.project_con_list{
    width: 150%;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: auto;
    grid-gap: 40px;
}
.project_con_list>a{
    display: block;
    transition: all 0.3s;
}
.project_con_list>a:hover{
    transform: scale(1.05);
}
@media screen and (max-width: 768px){
    .project_con{
        width: 100%;
    }
    .project_con_list{
        grid-gap: 10px;
        width: 300%;
    }

}
