/* applies to all HTML elements */
*{
    margin: 0;
    padding: 0;
}

/* Navigation Bar Styling */
.jr-bar {
    overflow: hidden;
    background-color: #333;
    height: 50px;  /* Add a height to the navigation bar */
}

.jr-bar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 1% 3%;
    text-decoration: none;
    font-size: 17px;
}

.jr-bar a:hover {
    background-color: #ddd;
    color: black;
}

.jr-bar-links {
    flex: 1;
    text-align: right;
}

.jr-bar-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.jr-bar a.current {
    text-decoration: underline;
  }

footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    padding: 3px;
    margin-top: auto;
    background-color: orange;
    color: black;
    font-size: 44px;
    font-weight: bold;
}