﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

h5 {
    font-size: 1.25rem;
}

a {
    color: #000;
    transition: opacity 0.2s;
}

    a:hover {
        opacity: 0.6;
        text-decoration: underline;
    }

    a.external[href*="//"]::after {
        margin-left: 10px;
        content: "\2197";
    }

.badge {
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.25em 0.5em;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
}

.col-auto {
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 576px) {
    .col-3 {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
    }

    .col-9 {
        width: 100%;
    }
}
