:root {
    --orange: #fb8806;
    --yellow-orange: #fbaf0a;
    --mild: #fba35a;
    --syrup: #e75304;
    --dark: #a92d04;
}

.rtitle{
    font-size: 28px;
    margin: 0;
    text-decoration: underline;
    display: inline-block;
}

.linkblock {
    padding-left: 0;
}

.linkblock li{
    display: inline;
    list-style: none;
    font-size: 18px !important;
    margin: auto 4px;
}

.resource-download-text {
    text-decoration: underline;
}

.resource {
    box-sizing: border-box;
    width: 400px;
    margin: 20px;
    border: 2px solid black;
    padding: 10px;
}

p a{
    font-size: 18px !important;
}

#resource_container{
    display: grid;
    grid-template-columns: auto auto;

}

a:visited{
    color: #0000EE;
}

@media only screen and (max-width: 1200px){
    #resource_container{
        display: grid;
        grid-template-columns: auto;
    }

    .resource {
        width: 60vw;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 768px){
    #resource_container{
        align-items: center;
    }
}