#random-artist-container  {
    margin: 20px auto;
}

#loading-icon {
    position: absolute;
    margin-left: 40vw;
    margin-top: 13em;
}

#random-artist-card {
    transition-timing-function: linear;
    transition-duration: 0.2s;
    display: grid;
    grid-template-columns: 1fr 3fr ;
    align-items: left;
    text-align: left;
    width: 90%;
    min-height: fit-content;
    margin: 20px auto;
    border-radius: 10px;
    padding: 20px;
    background: linear-gradient(349deg, rgb(65, 128, 109) 0%, rgb(86, 182, 142) 100%);
    box-shadow: 0px 0px 80px rgba(0, 255, 234, 0.418);
}


#new-random-artist-btn {
    margin: 20px 0 0 120px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    border: 1px solid gray;
    border-radius: 0px;
    background: #557272;
    height: 3em;
    width: 15em;
    align-self: left;
}



#random-artist-card img {
    height: 500px;
    width: 500px;  
    object-fit: cover;
    object-position: top;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.322);
    border-radius: 5px;
}

#random-artist-card div {
    margin-left: 20px;
}

#random-artist-card h3 {
    font-family:'Times New Roman', Times, serif;
    font-size: 70px;
    margin: 0 auto;
    letter-spacing: -3px ;
    color:rgb(255, 255, 255);
    text-decoration: 1px solid black;
    text-shadow: 0 0 3px rgb(0, 0, 0);;
}

#random-artist-card button {
    margin: 80px auto 0 auto;
    border: 1px solid gray;
    background-color: #424242;
    width: 80px;
    height: 80px;
    font-size: 50px;
    border-radius: 10px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 1px solid gray;
    border-radius: 7px;
    
    width: 2em;
    background: #557272;
    font-size: 40px;
    position: relative; 
}

#random-artist-card a {
    color: aqua;
    font-size: 20px;
}


