.artists-header {
    width: 70%;
    margin: 0 auto;
    color: #fff;
}

.artists-main-container {
    width: 70%;
    margin: 0 auto;
}

.artists-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.artist {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem;
    cursor: pointer;
    background-color: #222;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
}

.artist-image {
    width: 5rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.5rem 0 0 0;
    color: #fff;
}

@media screen and (max-width: 768px) { 
    .artists-main-container {
        width: 90%;
    }

    .artists-container {
        grid-template-columns: repeat(1, 1fr);
    }
}