@charset "utf-8";

#resourcesArticle {
    background-color: white;
    width: 75vw;
    display: block;
    margin: auto;
    border: 4px solid black;
    border-radius: 30px;
    overflow: hidden;
}

#resourcesArticle h1 {
    font-size: 48pt;
    text-align: center;
    border-bottom: 3px solid black;
    width: 40vw;
    display: block;
    margin: auto;
    margin-bottom: 40px;
}

#resourcesArticle h2 {
    width: 60vw;
    text-align: center;
    margin: auto;
}

#resourcesArticle li {
    text-align: center;
    list-style-type: none;
    width: 7vw;
    float: left;
    margin: 4vw;
}

#resourcesArticle img {
    width: 10vw;
}

#resourcesArticle a {
    color: black;
}

#resourcesArticle a:hover {
    color: #7597fa;
}

@media screen and (max-width: 1400px) {
    #resourcesArticle img {
        float: none;
        width: 100%;
        margin: auto;
    }
    
    #resourcesArticle li {
        width: 20vw;
    }
}

@media screen and (max-width: 1000px) {
    #locationsArticle img {
        float: none;
        width: 20%;
        margin: auto;
    }
    
    #resourcesArticle li {
        width: 20vw;
    }
}

@media screen and (max-width: 600px) {
    #resourcesArticle h1 {
        font-size: 35pt;
    }
    
    #locationsArticle img {
        float: none;
        width: 20vw;
        margin: auto;
    }
    
    #resourcesArticle li {
        width: 80%;
    }
}