body {
    padding-top: 4rem;
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
    color: #666666;
}

/* navbar */
.navbar {
    background-color: #5E7D7E;
}

/* navbar brand and text color */
.navbar .navbar-brand {
    color: #FFF380;
    font-size: 20px;
    text-shadow: 2px 2px #000000;
    font-family: "Times New Roman", Times, serif;
}

/* navbar links */
.navbar .navbar-nav .nav-link {
    color: #00ff00;
}

/* navbar links hover */
.navbar .nav-item.active .nav-link,
.navbar .nav-item:focus .nav-link {
    color: #0000ff;
}

/* navbar links hover */
.navbar .nav-item:hover .nav-link {
    color: #ff0000;
}

.container-bar {
    background-color: #E5E4E2;
    margin-bottom: 2rem;
}

h1 {
    color: #4AA02C;
    text-align: center;
    margin-bottom: 1rem;
}

h2 {
    font-size: 25px;
    color: #000000;
    text-align: left;
    margin-bottom: 1rem;
}

h3 {
    color: #4AA02C;
    text-align: left;
    margin-bottom: 1.5rem;
}

h4 {
    color: #4AA02C;
    text-align: left;
    margin-bottom: 1rem;
}

img {
    margin-bottom: 0.5rem;
}

/* ! -- footer -- */
footer {
    text-align: left;
    background-color: #000000;
    padding: 10px;
    margin-top: 0px;
    margin-right: 0;
    margin-bottom: 0px;
    margin-left: 0;
    color: #ffffff;
}

footer a {
    color: #EDE275;
    text-decoration: none;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

footer a:visited {
    color: #EDE275;
    text-decoration: none;
}

footer a:hover {
    color: #fff000;
    text-decoration: none;
}

footer a:active {
    color: #EDE275;
    text-decoration: none;
}

/* -------- media query 768 -------- */
@media (max-width: 768px) {
    body {
        font-size: 0.9em;
    }

    p {
        font-size: 0.9em;
    }

    h1 {
        font-size: 1.0em;
        font-style: ;
    }

    small {
        font-size: 0.75em;
    }

    h2 {
        font-size: 0.8em;
    }

    h3 {
        font-size: 0.8em;
    }

    h4 {
        font-size: 0.8em;
    }

    ul li {
        font-size: 0.8em;
    }

    table {
        font-size: 0.8em;
    }

    a {
        font-size: 0.9em;
    }

    .banner-img {
        height: 120px !important;

        /* Force the image to match container height */
        width: 100%;
        object-fit: cover;

        /* Crops image to fill the 120px area without squishing */
        object-position: center;

        /* Keeps the center of the image visible */
    }

    .btn.btn-primary.active {
        font-size: 0.8em;
    }
}


