body {
    margin: 0px;
    /* background-color: rgb(244, 136, 47); */
    background-color: rgb(27, 27, 38);
}

.artist-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.artist-card_cont {
    padding: 20px;
}

.artist-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    filter: drop-shadow(-6px 8px 3px rgba(0, 0, 0, 0.1));
    border-radius: 5px;
    height: 300px;
    width: 300px;
    background-color: white;

    transition: transform;
    cursor: zoom-in;
}

.artist-card-title_cont {
    user-select: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    height: 20%;
    /* inner elements */
    span {
        font-size: 23px;
        margin: 0px;
    }
}

.artist-card-img_cont {
    user-select: none;
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 5px;
    overflow: hidden;
    align-content: center;
    justify-content: center;
    text-align: center;
    height: 60%;
    /* inner elements */
    img {
        height: 100%;
    }
}

.artist-card-desc_cont {
    user-select: none;
    margin-left: 10px;
    margin-right: 10px;
    line-height: 0.8;
    height: 20%;
    /* inner elements */
    span {
        font-size: 12px;
        margin: 0px;
        white-space: pre-line; /* allows for "\n" newlines */
    }
}

.construction {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-image: url(src/img/stripe.png);
    background-repeat: repeat-x;
    image-rendering: optimizeSpeed;
    background-size: 100px;
    animation: 1s linear infinite scroll;
    /* inner elements */
    span {
        -webkit-text-stroke: 5px black;
        paint-order: stroke fill;
        color: white;
    }
}

@keyframes scroll {
    100% {
        background-position-x: +100px;
    }
}

@media (max-width: 679px) { /* when page width is small enough */
    .header {
        span {
            margin-left: 0px;
        }
        justify-content: center;
    }
    .artist-card {
        height: 200px;
        width: 200px;
        margin: 10px;
    }
    .artist-card-title_cont {
        span {
            font-size: 14px;
        }
    }
    .artist-card-desc_cont {
        span {
            font-size: 10px;
        }
    }
}