/*makes fonts slightly smaller and more aesthetic*/
.md-typeset h1 {
    font-size: 1.8em; 
    margin-bottom: 0.64em;
}
.md-typeset h2 {
    font-size: 1.35em; 
}
.md-typeset h3 {
    font-size: 1.05em; 
}
.md-typeset h4 {
    font-size: 0.9em; 
}
.md-typeset .admonition {
    font-size: 0.9em; 
}
p {
    font-size: 0.875em; 
}
li {
    font-size: 0.875em; 
}
.md-typeset .grid.cards {
    font-size: 1.15em;
}

/*modifies slate palette*/
[data-md-color-scheme="slate"] {
    --md-primary-fg-color:        #20375a;
    --md-hue: 210;
}

[data-md-color-scheme="default"] {
    --md-primary-fg-color:        #20375a;
    --md-typeset-a-color:         #4051b5; 
}

/*sets style for h6 to be ~h2; to be used with grid cards*/
.md-typeset h6 {
    font-size: 1.2em;
    margin-top: 0.83em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

::selection {
    color: #fff;
    text-shadow: none;
    background: #0085a1;
}

.text-center {
    text-align: center;
}
