.banner {
    height: 88vh;
    width: 100%;
    position: fixed;
    top: 12vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    background-color: forestgreen;
}

.pageTitle {
    text-align: center;
    font-size: 8rem;
    font-family: "Montserrat Bold", sans-serif;
}

.content {
    margin-top: 100vh;
    background-color: #e9ffd0;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.menu {
    position: sticky;
    top: calc(12vh + 30px);
    width: 350px;
    height: 450px;
    margin: 30px;
}

#menuTitle {
    margin: 20px;
    font-size: 2rem;
}

.menuList {
    list-style-type: none;
}

.menuList .nested a {
    font-size: 0.9rem;
    color: black
}

.menuList .nested li {
    padding: 5px 0 5px 0;
}

.menuList li {
    padding: 5px 0 5px 0;
}

.menuList a {
    text-decoration: none;
    color: black;
}

.menuList a.active {
    font-weight: bold;
    text-decoration: underline;
}

.article {
    width: 65%;
    margin: 30px;
    padding: 30px;
    height: max-content;
}

.article h2 {
    font-size: 2.5rem;
    margin-top: 10px;
    scroll-margin-top: calc(12vh + 30px);
}

.article h3 {
    font-size: 2.2rem;
    margin-top: 10px;
    scroll-margin-top: calc(12vh + 30px);
}

.article h4 {
    font-size: 2rem;
    margin-top: 7.5px;
    scroll-margin-top: calc(12vh + 30px);
}

.article p,
li {
    font-size: 1rem;
}

.imageHolder {
    width: 100%;
    height: min-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.imageHolder p {
    font-size: 1rem;
}

.imageHolder a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lowerImg {
    max-height: 400px;
    max-width: 400px;
}

.upperImg {
    max-width: 300px;
    height: auto;
}

.cc {
    text-align: center;
}

.imgCC {
    padding: 30px;
    max-width: 300px;
}

table, th, td {
    border: 1px solid black;
    border-spacing: 0;
    font-size: 1rem;
    text-align: center;
}

td {
    max-width: 200px;
    width:fit-content;
}

table {
    width: 100%;
}
