.lists{
    display: flex;
    flex-wrap: wrap;
}
.lists .item{
    width: 20%;
    padding: 1%;
    position: relative;
}
@media (max-width: 576px) {
    .lists .item {
        width: 50%;
        padding: 1%;
        position: relative;
    }
}
.lists .item img{
    width: 100%;
}

.lists .item .name {
    text-align: center;
    margin-top: 10px;
}

.main {
    width: 20%;
    margin-top: 50px;
    margin-left: 40%;
    margin-right: 40%;
    margin-bottom: 50px;
    text-align: center;
}

@media (max-width: 576px) {
.main {
        width: 70%;
        margin-top: 50px;
        margin-left: 15%;
        margin-bottom: 50px;
        text-align: center;
    }
}

.main img{
    width: 100%;
}
.main .name{
    margin-top: 20px;
}
.item .score{
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0000008f;
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
}