.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.project {
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    width:min-content;
    margin: 5px 0;
    padding-bottom: 3px;
    border-radius: 20px;
    overflow: hidden;
    width:250px;

    border: solid 2pt white;
}
.project:hover {
    filter:none;
}

.game-img-container, .album-img-container {
    width:250px;
    position: relative;
}

.game-img-container {
     height:200px;
}
.album-img-container {
    height:250px;
}



.project-img {
    width:100%;
    height: 100%;
}
.project-img-overlay {
    position:absolute;
    background-color: rgba(0, 0, 0, 0.329);
    
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    gap:5px;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: opacity 0.1s
}
.project-img-overlay:hover {
    opacity: 1;
    transition: opacity 0.1s
}


.project-title {
    font-family: Helvetica, sans-serif;
    font-weight: 900;
    font-size: 16pt;
    margin-bottom: 0;
}
.project-info {
    margin: 0;
}