body {
    font-family: var(--font-family-regular);
    font-weight:normal;
    font-size: 1rem;
    font-size-adjust: 0.6;

    background-color: var(--background-color) !important;
    color: var(--main-text-color);
    margin-top: var(--body--margin-top) !important;

    min-height: calc(100vh - var(--body--margin-top));
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    color: #444444;
}

p {
    font-family: var(--font-family-light);
}

.main {
    font-family: var(--font-family-light);
}

.invalid-feedback {
    display: block !important;
}

.button1 {
    background-color: #5f788a;
    /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
}


.bg-steel {
    background-color: #5f788a;
}

.site-header .navbar-nav .nav-link {
    color: #cbd5db;
}

.site-header .navbar-nav .nav-link:hover {
    color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
    font-weight: 500;
}

.article-title {
    color: #444444;
}

a.article-title:hover {
    color: #428bca;
    text-decoration: none;
}

.article-content {
    white-space: pre-line;
}

.article-img {
    height: 65px;
    width: 65px;
    margin-right: 16px;
}

.article-metadata {
    padding-bottom: 1px;
    margin-bottom: 4px;
    border-bottom: 1px solid #e3e3e3
}

.article-metadata a:hover {
    color: #333;
    text-decoration: none;
}

.article-svg {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

.account-img {
    height: 125px;
    width: 125px;
    margin-right: 20px;
    margin-bottom: 16px;
}

.account-heading {
    font-size: 1.5rem;
}

.static {
    position: absolute;
    background: white;
}

.static:hover {
    opacity: 0;
}

.clickable-cursor {
    cursor: pointer
}