.game-list-display {
    position: relative;
    margin: auto;
    font-size: 30px;
}

.list-display-text {
    margin-left: 10vw;
    margin-top: 5rem;
    font-size: 40px;
}

.list-display-text h3 {
    margin-bottom: 0;
}


.service-list {
    display: flex;
    flex-wrap: wrap;
    margin: 4rem auto;
    padding: 0 4rem ;
    justify-content: space-evenly;
    column-gap: 25px;
}

.service-card {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 275px;
    aspect-ratio: 2 / 3;
    margin: 1svh auto;
    border: 5px solid rgba(62, 60, 60, 0.757);
    border-radius: 15px;
    background-color: rgba(62, 60, 60, 0.609);
    background-size: cover;
    background-image: fill;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s ease;
}

.service-card-overlay {
    width: 100%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
}

.service-card-svg svg {
    fill: rgb(62, 60, 60);
    overflow: hidden;
    stroke: rgb(62, 60, 60);
    position: absolute;
    bottom: -55px;
    left: -5px
}


.service-card-info {
    
    width: 100%;
    position: relative;
    align-items: bottom;
    display: grid;
    grid-template-columns: 60px 1fr;
    font-size: 1.4rem;
    align-items: center;
    bottom: 0;
}

.service-image {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 16px 10px;
}

.service-card-info h2 {
    margin: 0;
}

.half-circle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 48px;
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    pointer-events: none;
}
.service-card:hover {
    transform: scale(1.05);
}


@media(max-width: 450px) {
    .service-card {
        width: 40dvw;
    }
    .service-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
    }
    .service-card-info {
        grid-template-columns: 32px 1fr;
    }
    .service-card-info h2 {
        font-size: 1ch;
    }
    .service-image {
        margin: auto 0.1rem;
        height: 1.3ch;
        width: 1.3ch;
    }
}

.service-card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-image: fill;
    background-position: center;
    opacity: 0.8;
    top: 0;
    left: 0;
}

#defualt-img {
    background-image: url(../img/avatar.png);
}

#card_minecraft {
    background-image: url(../img/service/minecraft-background.jpg);
}

#card_satisfactory {
    background-image: url(../img/service/satisfactory-background.jpg);
}

#card_rust {
    background-image: url(../img/service/rust-background.jpg);
}
#card_palworld {
    background-image: url(../img/service/palworld-background.png);
}