/*** Set Up Color Variables - KM - 230512 ***/

html {
   --brand-blue: #0032a0;
   --brand-gold: #87714d;
   --brand-light-yellow: #f2e5b3;
   --brand-alt-yellow: #ffb81d;
   --brand-alt-blue: #002f6d;
   --light-base: #fff;
   --dark-base: #333;
   --shadow: rgba(50, 50, 50, 0.5);
}

/*** End - Set Up Color Variables - KM - 230512 ***/

/*** Typography - KM - 230512 ***/

html {
   font-size: 18px;
   color: var(--dark-base);
   background-color: var(--light-base);
   font-family: Arial, sans-serif;
}

html a,
html a:visited {
   color: var(--brand-blue);
}

html a:hover,
html a:focus {
   color: var(--brand-alt-blue);
   outline: 1px dashed;
}

header nav.navbar a,
header nav.navbar a:visited,
footer a,
footer a:visited {
   color: var(--light-base);
}

header nav.navbar a:hover,
header nav.navbar a:focus,
.navbar-nav .nav-link.show,
footer a:hover,
footer a:focus {
   color: var(--brand-alt-yellow);
}

h1 {
   text-align: center;
   color: var(--dark-base);
   font-weight: 700;
   text-transform: uppercase;
}

h1, h2, h3, h4 {
   margin: 1rem 0;
}

.btn, a.btn, a.btn:visited {
   font-size: 1.1rem;
   padding: 0.75em 1.5em;
   margin-bottom: 1rem;
   font-weight: 600;
   text-transform: uppercase;
   background-color: var(--brand-blue);
   color: var(--light-base);
   border: 3px solid var(--brand-blue);
}

.btn:hover, .btn:hover:focus, .btn:focus-visible, a.btn:hover, a.btn:hover:focus, a.btn:focus-visible {
   background-color: var(--light-base);
   color: var(--brand-blue);
   border: 3px solid var(--brand-blue);
}

/*** End - Typography - KM - 230512 ***/

/*** Header and Footer Styles - KM - 230512 ***/

header,
nav.navbar,
footer {
   color: var(--light-base);
   background-color: var(--brand-blue);
}

/*** End - Header and Footer Styles - KM - 230512 ***/

/*** Header Only Styles - KM - 230512 ***/

header {
   border-bottom: 2px solid var(--brand-alt-yellow);
   box-shadow: 0 2px 3px var(--shadow);
}

header,
nav.navbar {
   font-size: 1.2rem;
   font-weight: 500;
}

#navbarSupportedContent {
   justify-content: end;
}

a.navbar-brand {
   max-width: 66%;
}

a.navbar-brand img {
   max-width: 100%;
}

button.navbar-toggler {
   background-color: var(--light-base);
}

.dropdown-menu {
   background-color: var(--brand-blue);
   border: solid 1px var(--brand-alt-yellow);
   box-shadow: 2px 2px 2px var(--shadow);
}

.dropdown-item:focus,
.dropdown-item:hover {
   background-color: inherit;
}

/*** End - Header Only Styles - KM - 230512 ***/

/*** Main Content Area Styles - KM - 230512 ***/

main {
   min-height: 600px;
}

.content-header {
   margin-bottom: 1em;
   padding: 2em 0;
   background-color: var(--brand-light-yellow);
}

.content-main {
   padding: 2em;
}

li {
   line-height: 2em;
}

img {
   max-width: 100%;
}

/*** End - Main Content Area Styles - KM - 230512 ***/

/*** Footer Styles - KM - 230512 ***/

footer {
   padding: 1rem 0 0 0;
   border-top: 2px solid var(--brand-alt-yellow);
   box-shadow: 0 -2px 3px var(--shadow);
}

/*** End - Footer Styles - KM - 230512 ***/
