body {
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    max-width: 1300px;
    flex: 1; /* Fills available space */
    padding: 20px;
}
img {
    max-width: 100%;
}
header img {
    max-width: 150px;
    width: 100%;
}
.disclaimer {
    border-left: 4px solid #8c5802;
}
.brand a:hover {
  color: white !important;
  text-decoration: none;
}

nav .dropdown-item {
    font-size: var(--bs-nav-link-font-size);
}
header {
    padding: 10px 0;
    border-bottom: 2px solid #8c5802;
}
.nav-link, .navbar-brand {
  color: #081e36;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}
.title h3 {
    margin-bottom: 0;
    text-transform: uppercase;
    width: fit-content;
}
.title hr {
    margin: 0;
    margin-bottom: 0px;
    margin-bottom: 1rem;
    width: 60%;
    border: none;
    height: 3px;
    background-color: #081e36;
    opacity: 1;
}
.getUrl input {
    max-width: 400px;
    width: 100%;
}
.footer {
    border-top: 2px solid #8c5802;
}
section.footer {
  text-align: center;
  padding: 1em 0 0;
  color: black;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    black;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    black;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    black;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    black;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    black;
}
::placeholder { /* Most modern browsers support this now. */
   color:    black;
}
@media (min-width: 768px) {
    #navbarh {
        justify-content: flex-end;
    }
}
@media (min-width: 1200px) {
    body {
        text-align: justify;
    }
}
@media (max-width: 767.98px) {
    header img {
        margin: 0 auto;
        display: block;
    }
}