:root {
    --theme-blue: #005586;
    --theme-grey: #666666;
    --bs-body-color: black;
}

html {
    font-size: 14px;
}

h1, h2, h3, .nav-link {
    font-family: "League Spartan", sans-serif;
}

* {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
}

@font-face {
    font-family: "League Spartan";
    src: url(../fonts/LeagueSpartan-VariableFont_wght.ttf);
}


@font-face {
    font-family: aileron-regular;
    src: url(../fonts/Aileron-Regular.otf);
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body, nav {
    margin-bottom: 60px;
    background-color: var(--theme-grey);
}

.nav-link {
    font-size: 32px;
    font-weight: bold;
}

    .nav-link:hover {
        color: white !important;
        transform: scale(1.1);
    }

@media (min-width: 768px) {
    h1 {
        font-size: 96px !important;
    }

    h2 {
        font-size: 72px !important;
    }

    h3 {
        font-size: 36px !important;
    }
}

h1 {
    font-size: 72px;
}

h2 {
    font-size: 56px;
}

h3 {
    font-size: 24px;
}

.row {
    background-color: var(--theme-blue);
}

.text-blue {
    color: var(--theme-blue);
}

.text-grey {
    color: var(--theme-grey);
}

.btn-grey {
    background-color: var(--theme-grey);
    color: white;
}

a {
    color: inherit !important
}

    a:hover {
        color: black !important;
    }
