$myBrown: rgb(68,48,34);
$myTan: #dfcdbf;
$myPurple: rgb(25,0,25);

.resource-list {
    list-style: none;
    padding: 0;        // ← add this
    text-align: center;  // ← add this to center the whole list

}

.resource-list li a{
    font-family: 'Philosopher', sans-serif;
    font-size: 1.2rem;
    color: $myBrown;
    text-align: center;
    margin: 0;
    padding: 1rem 1rem;
}

.resource-list li{
    font-family: 'Philosopher', sans-serif;
    font-size: 1.2rem;
    color: $myBrown;
    text-align: center;
    margin: 0;
    padding: 1rem 1rem;
}
.sermon-list {
    list-style: none;
    padding: 0;        // ← add this
    text-align: center;  // ← add this
}

.sermon-list li a{
    font-family: 'Philosopher', sans-serif;
    font-size: 1.2rem;
    color: $myBrown;
    text-align: center;
    margin: 0;
    
}

.sermon-list li{
    font-family: 'Philosopher', sans-serif;
    font-size: 1.2rem;
    color: $myBrown;
    text-align: center;
    margin: 0;
    
}

