
.project-title{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;
    padding-top: 5px;
    border-radius: 10px;
    background-color: #1e1e1e;

}
.project-title-container{
    display: grid;
    
    justify-content: center;
    width: 100%;
}
.project-container{
    justify-content: center;
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
}
.project-title-image{
    justify-content: center;
    max-height: 50vh;
    max-width: 80vw;
    border-radius: 10px;
}
.project-desc-container{
    font-size: large;
    padding: 20px;
    max-width: 50%
}
.project-otherimages-title-container{
    display: grid;
    justify-content: center;
    width: 100%;
}
.project-otherimage{
    justify-content: center;
    max-height: 40vh;
    max-width: 60vw;
    border-radius: 10px;
    margin: 10px;
}
.project-otherimages-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



/* project list */
.project-list-title{
    text-align: center;
    width: 100%;
}
.project-list-desc{
    margin: 20px;
}
.project-list-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.project-list-item{
    margin-top: 5px;
    margin-bottom: 5px;
    transition: ease 0.1s;
}
.project-list-item:hover{
    transform: translate(10px,0px);
}