html,
body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

.imageWithText {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.imageWithText .image {
    position: absolute;
    height: 100%;
    width: 100%;
}

.imageWithText .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imageWithText .text {
    position: relative;
    text-align: center;
    padding: 20px;
    z-index: 1;
    ;
}


.navigation.bar {
    width: 100%;
    box-sizing: border-box;
    padding: 25px;
    position: sticky;
    top: 0px;
    left: 0px;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}

.navigation.bar .open {
    cursor: pointer;
    margin: auto 0px;
}

.navigation.popout {
    position: fixed;
    top: 0px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.446);
    width: 100%;
    height: 100%;
}

.navigation.popout:not(.active) {
    display: none;
}

.navigation.popout .menu {
    background-color: white;
    color: black;
    width: 60%;
    max-width: 350px;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
    margin-left: auto;
    transition-duration: 250ms;
    position: absolute;
}

.navigation.popout .menu .title {
    font-weight: bold;
    padding: 5px;
    text-align: center;
    border-bottom: 1px solid rgb(200, 200, 200);
}

.navigation.popout .menu .links {
    padding: 5px;
    padding-left: 10px;
    margin: 5px;
}

.navigation.popout .nav-item {
    margin: 5px;
}

.navigation.popout .menu .links .nav-folder {
    margin-bottom: 10px;
}


.nav-folder .text {
    font-weight: bold;
    margin: 5px 0px;
}

.nav-folder .nav-contents {
    margin-left: 15px;
    margin-bottom: 5px;
}

.navigation .links a::before {
    content: "• ";
}


.navigation .navLogo {
    width: 100%;
    text-align: center;
}

.mngFooter {
    padding: 20px;
    text-align: center;
    background-color: rgb(40, 40, 40);
    color: white !important;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.mngFooter p {
    margin: 2.5px;
    color: white !important;
}

navtitle {
    display: none;
}

*[font="small"] {
    font-size: small;
}

*[font="medium"] {
    font-size: medium;
}

*[font="large"] {
    font-size: large;
}

*[font="xlarge"] {
    font-size: xx-large;
}

*[font="enormous"] {
    font-size: 4em;
}

.sideContent {
    display: flex;
}

.sideContent>div {
    width: 50%;
}

.sideContent .left {
    margin-right: auto;
}

.sideContent .right {
    margin-left: auto;
}


@media screen and (min-width: 700px) {
    /* Larger screens */

    .navigation.bar {
        font-size: xx-large;
    }



    .navigation .navLogo .logo {
        max-width: 50%;
        max-height: 175px;
        height: auto;
        width: auto;
    }
}

@media screen and (max-width: 700px) {
    /* Smaller screens */

    .navigation.bar {
        font-size: xx-large;
    }

    .navigation.popout .nav-item {
        margin: 12px;
    }



    .navigation .navLogo .logo {
        max-width: 80%;
        max-height: 300px;
        height: auto;
        width: auto;
    }
}

.backgroundImage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.backgroundImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-content {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}