.quick-details{
    display:flex;
    flex-direction: column;
}
#GameDev{
    row-gap: 20px;
    column-gap: 60px;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    width:1400px;
    justify-content: center;
    margin-left:auto;
    margin-right:auto;
}
#GameDev>div{
    display:flex;
    flex-direction:row;
    width: 600px;
    gap:10px;
    /* cursor: pointer; */
}
/* .infolist-item:hover{
    background-color: purple;
} */
#GameDev>div>img{
    max-width:360px;
    max-height:240px;
    border-radius: 20px 20px;
}
.projectimg{
    max-height:400px;
    max-width:400px;
    border-radius: 20px 20px;
}
.wrapper{
    display:flex;
    align-items: center;
    gap:25px;
    min-height:225px;
    margin-left: auto;
    margin-right: auto;
    width:fit-content;
    max-width:1000px;
    flex-direction: row;
}
@media (max-aspect-ratio:1/1) {
    .wrapper{
        flex-direction: column;
    }
}
@media (min-aspect-ratio:1/1) {
    .wrapper{
        flex-direction: row;
    }
}
@media (aspect-ratio:1/1){
    .wrapper{
        flex-direction: column;
    }
}
.panel{
    display:flex;
    flex-direction: column;
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat-y;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.8);
    background-blend-mode: color-burn;
    padding-bottom:40px;
    width:40%;
    height:100px;
    font-size:0px;
}
.project-media{
    display:flex;
    justify-content: right;
}
.projectimg{
    margin-left:auto;
    margin-right: 0px;
    align-self: right;
}