h1, p {
    text-align: center;
}
h1 {
    color: rgb(239, 166, 255)
}

.list-row {
    display: flex;
    justify-content: center;
}

.list-item {
    background-color: black;
    width:250px;
    color:white;
    text-align: center;
    border: solid;
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 10px;
}
.list-item-img-container, .list-item-img {
    width:250px;
    display: relative
}
.list-item-title {
    font-size: x-large;
    margin-bottom: 2px;
}
.list-item-description {
    font-size: medium;
    margin-bottom: 2px;
}

.list-item-game-links-container, .list-item-album-links-container {
    opacity: 0;
    display: flex;
    position:absolute;
    background-color: rgba(0, 0, 0, 0.648);
    width:250px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.1s
}
.list-item-game-links-container:hover, .list-item-album-links-container:hover {
    opacity: 1;
    transition: opacity 0.s
}
.list-item-game-links-container {
    height: 200px;
}
.list-item-album-links-container {
    height: 250px;
}

.list-item-link {
    width:60px;
    height:60px;
    margin:5px;
    padding:0;
    transition: width 0.2s, height 0.2s, margin 0.2s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    border:none;
    background-color: transparent;
}
.list-item-link:hover {
    width: 70px;
    height: 70px;
    margin: 0;
    transition: width 0.2s, height 0.2s, margin 0.2s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.list-item-link-img {
    width: 100%;
}