#stateList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 100px 0;
    padding: 0;
    list-style: none;
}
#stateList li {
    width: 90%;
    margin: 10px auto;
}
#stateList a {
    color: #fff;
    padding: 10px;
    display: block;
    text-align: center;
    background: var(--purple);
    border: 3px solid var(--purple);
    border-radius: 10px;
    box-shadow: 5px 5px 5px #666;
    text-decoration: none;
    transition: all .3s;
}
#stateList a:hover {
    background: var(--light-purple);
}


@media only screen and (min-width: 480px){
    #stateList li {
        width: 48%;
        margin: 10px 1%;
    }
}

@media only screen and (min-width: 768px){
    #stateList li {
        width: 23%;
    }
}