.artistsList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    align-items: stretch;
}
.artist {
    border: 1px solid #ddd;
    padding: .5rem;
}
.artist a {
    text-decoration: none;
    color: inherit;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: .3s;
}
.artist a:hover {
    opacity: .7;
}
.artist img {
    width: 100%;
}
.artistname {
    margin: 0;
}
.arttype {
    font-weight: normal;
    margin-top: 0;
}
.eoi {
    border: 3px solid var(--mainDark);
    padding: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 3rem;
}
@media only screen and (max-width: 1270px) {
    article>section {
        width: 80%;
    }
}
@media only screen and (max-width: 800px) {
    .artistsList {
        display: block;
    }
}
@media only screen and (max-width: 430px) {
    .artistsList {
        grid-template-columns: 1fr;
    }
}