.artist-container{
    width: 90%;
    margin-left: 5%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 5%;
    row-gap: 3em;
    justify-content: center;
    
}

.artist-container .artist{
    width: 15em;
    background-color: rgb(27, 27, 27);
    border-radius: 1em;
    position: relative;
    outline: none;
    transition: .3s ease;
    color: rgb(133, 133, 133);
}
.artist img{
    width: inherit;
    height: 15;
    /* border-radius: 1.7em; */
    /* border-top-left-radius: 1em;
    border-top-right-radius: 1em; */
    border-bottom: 2px solid black;
    
}

/* textual stuff */
.artist .text_container{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    flex-direction: column;
    
}
.artist .name{
    color: inherit;
    display: flex;
    margin-left: 12px;
    font-size: 1.3em;
    /* white-space: nowrap; */
    overflow-x: hidden;
    font-family: inherit;
}
.artist .num{
    color: rgb(114, 114, 114);
    font-size: 1em;
    margin-left: 12px;
    font-family: inherit;
    padding-bottom: 15px;
}

.artist .play{
    width: 40px;
    height: 40px;
    border: black 2px solid;
    border-radius: 30px;
    position: absolute;
    top: 185px;
    right: 15px;
    visibility: hidden;
}
.artist:hover .play{
    visibility: visible;
    background-color: rgba(27, 27, 27, 0.7);
    border: none;
}
.artist:hover{
    outline: 1px solid black;

}
.artist_thumbnail{
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    transition: 1s;
}

.artist:hover .artist_thumbnail{
    border-radius: 3px;
}
.artist:hover{
    border-radius: 3px;
}


.play img{
    border-bottom: none;
}