﻿html {
    /* Standard styles */
    position: relative;
    min-height: 100%;
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        /* Standard styles */
        font-size: 16px;
    }
}

body {
    /* Standard styles */
    color: var(--dark);
    background-color: var(--light);
    font-family: "font-primary";
    font-weight: 400;
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

main {
    padding-top: 105px;
}

h1 {
    /* Standard styles */
    color: var(--primary);
    font-family: "font-tertiary";
    font-weight: 400;
    font-size: 3rem;
    text-align: center;
}

h2 {
    /* Standard styles */
    color: var(--primary);
    font-family: "font-secondary";
    font-weight: 300;
    font-size: 2.5rem;
    text-align: center;
}

h3 {
    /* Standard styles */
    color: var(--secondary);
    font-family: "font-primary";
    font-size: 2rem;
    text-align: center;
    font-variant: small-caps;
}

h4 {
    /* Standard styles */
    color: var(--dark);
    font-family: "font-primary";
    font-size: 1.7rem;
    text-align: center;
}

p {
    /* Standard styles */
    color: var(--dark);
    font-family: "font-primary";
    font-size: 1.2rem;
}

a {
    /* Standard styles */
    color: var(--primary);
    font-family: "font-primary";
}

    a:hover {
        /* Standard styles */
        color: var(--accent);
        font-family: "font-primary";
    }

    a.link-clear {
        color: inherit;
        text-decoration: none;
    }

ul {
    /* Standard styles */
    list-style-type: disclosure-closed;
    letter-spacing: 0.5px;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--primary);
}

    .navbar-light .navbar-nav .nav-link:hover {
        color: var(--accent);
    }

.row {
    justify-content: center;
    align-items: center;
}

section.row {
    margin-bottom: 150px;
}

/* Out of the box styles */
/****************************************************************************/


a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

/* Out of the box styles */
/****************************************************************************/

/* Sticky footer styles
-------------------------------------------------- */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}
