body {
    --bs-blue: #0b98f2;
    background: #f0f0f0;
}

@keyframes rotate-clockwise {
    0% {
        transform: rotate(0deg);
    }
    40% {
        transform: rotate(150deg);
    }
    60% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.header-logo {
    margin-right: .5em;
    animation: rotate-clockwise 8s linear infinite;
}

.header-logo path {

}

.header-logo-text {
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
    border-bottom: 2px solid var(--bs-dark);
    line-height: 1.2;
}

.logo-font {
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
}

.text-right {
    text-align: right;
}

.red {
    color: var(--bs-red);
}

.header-nav a {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    color: var(--bs-dark);
    margin-left: .5em;
}

.header-nav a.active {
    color: var(--bs-red);
    text-decoration: none;
}

.pg-footer {
    margin: 2rem auto 0;
    padding: 1rem 0;
    font-size: .7rem;
}

.pg-footer p {
    margin: 0;
}

.pg-footer svg path {
    fill: #6c757d;
}

.pg-footer .logo-font {
    color: #6c757d;
    text-decoration: none;
    font-size: 16px;
}


.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}