/*
 * Artist List
 */

/* Tiny Screens (Mobile) */
@media (max-width: 383px) {
    .artist {
        width: 64px;
    }

    .artist .avatar,
    .preview {
        width: 64px;
        height: 64px;
    }

    .artist .socials img {
        width: 24px;
        height: 24px;
    }
}

/* Small Screens (Mobile) */
@media (min-width: 384px) and (max-width: 719px) {
    .artist {
        width: 100px;
    }

    .artist .avatar,
    .preview {
        width: 100px;
        height: 100px;
    }

    .artist .socials img {
        width: 24px;
        height: 24px;
    }
}

/* Large Screens (Desktop) */
@media (min-width: 720px) {
    .artist {
        width: 200px;
    }

    .artist .avatar,
    .preview {
        width: 200px;
        height: 200px;
    }

    .artist .socials img {
        width: 32px;
        height: 32px;
    }
}

#artist-list, #preview-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}


.artist {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 2rem;
    align-self: flex-start;
}

.artist .name {
    margin: 1em 0 0.5em 0;
}

.artist .avatar,
.preview {
    vertical-align: top;
    border-radius: 6px;
    box-shadow: rgb(255 255 255 / 20%) 0px 0px 0px 1px inset,
                rgb(0 0 0 / 90%) 0px 0px 0px 1px;
}

.artist .socials {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 0;
    align-items: center;
    justify-content: center;
    max-width: 200px;
}

.artist .socials a {
    display: block;
    margin: 0.25rem;
}

.artist .socials img {
    display: block;
    -webkit-filter: drop-shadow(0 0 1px #888);
    filter: drop-shadow(0 0 1px #888);
}

#artist-header {
    text-align: center;
}



/*
 * Preview Area
 */

.preview {
    margin: 2rem;
    border-radius: 6px;
    box-shadow: rgb(255 255 255 / 20%) 0px 0px 0px 1px inset,
                rgb(0 0 0 / 90%) 0px 0px 0px 1px;
}