/* Keep in mind, some of these classes are specifically tailored to overwrite stuff in the Astro SSG Markdown Parser */

#md-content h1, h2, h3, h4, h5, h6 {
    margin: 20px 0;
}

#md-content h1, h2, h3 {
    font-weight: 700;
}

#md-content p {
    margin: 10px 0;
}

#md-content ul, ol {
    margin-left: 20px;
}

#md-content a {
    color: var(--link-color) !important;
}

#md-content a:hover {
    color: var(--col-primary-tint) !important;
}

.astro-code {
    padding: 20px;
    background-color: var(--grey-700) !important;
    border-radius: 5px;
    box-shadow:0 .125rem .25rem rgba(0,0,0,.075);
}

