.ProjectHolder{
    width : 60vw;
    height: 100vh;
    background-color: rgb(46, 46, 46);
    margin: 0 auto;

    display:grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;

    border-radius: 20px;
}
.ProjectHolder div{
    width: 15vw;
    height: 30vh;
    background-color: rgb(94, 94, 94,0.5);
    display: inline-block;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
    text-align: center;
    
    border-radius: 1rem;
}
.ProjectHolder h{
    font-size: x-large;
}
.ProjectHolder img{
    width: 13vw;
    height: auto;
    border-radius: 1rem;
}

