a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

/* Fonts */
.mystery-quest-regular {
  font-family: "Mystery Quest", system-ui;
  font-weight: 400;
  font-style: normal;
}

.unkempt-regular {
  font-family: "Unkempt", cursive;
  font-weight: 400;
  font-style: normal;
}

.unkempt-bold {
  font-family: "Unkempt", cursive;
  font-weight: 700;
  font-style: normal;
}

header, footer {
    padding: 2rem 0px;
    background-color: rgb(41, 73, 36);
    background-image: url("Art/moose_forest_tree.png");
    background-repeat: repeat;
    background-size: 40px 40px;
    width: 100vw;
    text-align: center;
}

header {
    text-shadow: 4px 4px rgb(16, 29, 14);
    padding-top: 0px;
    border-bottom: 1px solid white;
}

.header-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 0.67em; /* From h1's default margin */
}

.header-wrapper h1 {
    margin: 0px 0px;
}

.header-moose-logo {
    margin: 0px 20px;
    aspect-ratio: 1;
    width: 184px;
    height: 184px;
}

.inverted {
    transform: scale(-1, 1);
}


/* Breadcrumb */
ul.breadcrumb {
    padding: 10px 16px;
    background-color: #eee;
    text-shadow: 1px 1px rgb(16, 29, 14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: unset;
}
ul.breadcrumb li {
    vertical-align: middle;
    display: inline;
    font-size: 2rem;
}
ul.breadcrumb li+li:before {
    padding: 8px;
    color: rgb(41, 73, 36);
    content: "/\00a0";
}
ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}
ul.breadcrumb li a:hover {
    color: #01447e;
    transform: scale(1.02);
}
ul.breadcrumb li span {
    color: #a56a2a;
}


body {
    margin: 0;
    min-height: 100dvh;
    background-color: rgb(54, 97, 48);
    background-image: url("Art/Moose/moose_cut_silhouette.png");
    background-repeat: repeat;
    background-size: 40px 40px;
    background-blend-mode: soft-light;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 3em;
    text-shadow: none;
    text-shadow: 2px 2px rgb(16, 29, 14);
}

main {
    flex: 1; /* Pushes footer down */
}


/* Footer */
footer {
    font-size: 2rem;
    border-top: 1px solid white;
}

.vertical-line {
    border-left: 2px solid;
    height: 1rem;
    margin-left: 40px;
    margin-right: 40px;
    display: inline;
}

.email-link, .web-link {
    display: inline-block;
}
.web-link {
    color: #0275d8;
}

.email-link a, .web-link a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.email-link a:hover, .web-link a:hover {
    color: #0275d8;
    text-decoration: underline;
    transform: scale(1.02);
}

.web-link a:hover {
    color: #01447e;
}