* {
    padding: 0;
    margin: 0;
}
#root {
    background: #494949;
    display: flex;
    justify-content: center;
}
#product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 2px;
    padding: 6px;
}
.product-card {
    background: url(./sprites.png) no-repeat;
    width: 130px;
    height: 140px;
    float: left;
    font-size: 24px;
    color: #ffe6ca;
    font-weight: bold;
    font-family: system-ui;
    -webkit-text-stroke: 1px black;
    transition: .3s ease;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid #494949;
}
.complete {
    border: 2px solid #ff7300;
    color: #fff300;
}
.complete::after {
    content: '';
    display: block;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #494949 url(./sprites.png) no-repeat -6px -710px;
    margin: 50px 0 0 70px;
}

@media only screen {
    .product-card {
        -webkit-text-stroke: 0 transparent;
        text-shadow: 1px 0 black, 0 1px black, -1px 0 black, 0 -1px black;
    }
}
