:root {
    --header-image: url('windowAssets/slime.gif');
    --darkest: #34403A;
    --second-darkest: #285238;
    --lightest: #125c29;

    --special-text: #76ee66;

}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Nunito', sans-serif;
    color: #fceaff;
}

* {
    box-sizing: border-box;
}

#container {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--darkest);
}

#container a {
    color: var(--special-text);
    font-weight: bold;
}

#header {
    width: 100%;
    background-color: #5bc613;
    height: 100px;
    background-image: var(--header-image);
    background-size: clamp(220px, 20vw, 320px) auto;
}

#navbar {
    height: 40px;
    background-color: var(--darkest);
    width: 100%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

#navbar li a {
    color: var(--special-text);
    font-weight: 800;
    text-decoration: none;
}

#navbar li a:hover {
    color: #a49cba;
    text-decoration: underline;
}

#flex {
    display: flex;
    flex: 1;
    align-items: stretch;
}

/* sidebar */
aside {
    background-color: var(--second-darkest);
    width: 200px;
    min-height: 100%;
    padding: 20px;
    font-size: smaller;
}

main {
    background-color: var(--lightest);
    flex: 1;
    min-width: 0;
    padding: 20px;
    order: 2;
}

.welcome-banner {
    position: relative;
    width: 100%;
    height: clamp(40px, 8vw, 90px);
    margin-bottom: 5px;
    overflow: hidden;
}

#leftSidebar {
    order: 1;
}

#rightSidebar {
    order: 3;
}

footer {
    background-color: var(--darkest);
    width: 100%;
    height: 40px;
    margin-top: auto;
    flex-shrink: 0;
    padding: 10px;
    text-align: center;
}

h1,
h2,
h3 {
    color: var(--special-text);
}

h1 {
    font-size: 25px;
}

strong {
    color: var(--special-text);
}

.box {
    background-color: var(--darkest);
    border: 1px solid var(--special-text);
    padding: 10px;
}

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: var(--darkest);
}

/* should be contianer width - 100*/
@media only screen and (max-width: 1400px) {
    #flex {
        flex: 0 0 auto;
        min-height: auto;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    aside {
        width: 100%;
        min-height: auto;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}

.banner-grass {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-bunny {
    position: absolute;
    bottom: 0;
    height: clamp(32px, 8vw, 72px);
    width: auto;
}

.site-logo {
    display: block;
    width: clamp(140px, 55vw, 660px);
    max-width: 100%;
    height: auto;
    margin-bottom: -10px;
}
