.artist-box {
    box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
    padding: 16px;
    border-radius: 20px;
    cursor: pointer;
    /* border: 1px solid #bd9a62; */
    background: linear-gradient(40deg,#2096ff,#05ffa3) !important;
    /* display: flex; */
}

.artist-box:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.artist-box .image {
    text-align: center;
}
 
.artist-box .image img {
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #fff;
    object-position: center top;
}

.artist-box-title {
    color: #fff;
    margin-top: 12px;
    font-size: 1.15rem;
    text-align: center;
}

.artist-box .artist-box-body {
    padding-left: 12px;
}

.artist-box hr {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    border-top-color: #bd9a62;
    opacity: 1;
}

.artist-box-footer {
    color:#989896;
}

@media screen and (max-width: 600px) {
    .artist-box {
        flex-direction: column;
    }
}