body {
    font-family: "JetBrains Mono";
    margin: 0;
    background-size: 200px;
    color: var(--mainTextcolor);
    background-image: var(--body-bg-image);
}
a {
    cursor:
        url("https://ani.cursors-4u.net/nature/nat-11/nat1047.cur"), pointer;
}

button {
    cursor: pointer;
}

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

main h1,
h2,
h3 {
    text-shadow: var(--borderMaincolor) 2px 2px 5px;
}

strong {
    text-shadow: var(--borderMaincolor) 4px 4px 8px;
}

* {
    box-sizing: border-box;
    cursor: url(https://cur.cursors-4u.net/others/oth-8/oth711.cur), auto;
}

/* below this line is CSS for the layout */

/* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */

/* the "container" is what wraps your entire website */
/* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
#container {
    max-width: 1100px;
    /* this is the width of your layout! */
    /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
    margin: 0 auto;
    /* this centers the entire page */
}

/* the area below is for all links on your page
    EXCEPT for the navigation */
#container a {
    color: var(--linkColor);
    font-weight: bold;
    cursor:
        url("https://ani.cursors-4u.net/nature/nat-11/nat1047.cur"), pointer;
    font-style: normal;
    text-decoration: none;
}

#container a:hover {
    color: var(--navbarLinkhover);
    text-shadow: var(--borderMaincolor) 4px 4px 8px;
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
}

a[target="_"]::after {
    content: url(/assets/general/icons/outlink2.png);
    filter: var(--outlinkColor);
    padding-left: 3px;
    vertical-align: top;
}

#header {
    width: 100%;
    height: 150px;
}

#leftSidebar {
    width: 340px;
}

strong,
b {
    color: var(--strongText);
}

/* navigation section!! */
#navbar {
    height: 40px;
    background-color: var(--navbarBGcolor);
    /* navbar color */
    width: 100%;
}

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

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

/* navigation links*/
#navbar li a {
    color: var(--navbarLink);
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
}

/* navigation link when a link is hovered over */
#navbar li a:hover {
    color: var(--navbarLinkhover);
    text-decoration: underline;
}

#flex {
    display: flex;
}

#imageweektext {
    background-color: var(--mainBGcolor);
    text-align: center;
}

aside {
    width: 200px;
    padding: 20px;
    font-size: 16px;
}

main {
    flex: 1;
    padding: 20px;
    order: 2;
    font-size: 21px;
    border-radius: 4px;
}
/* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

#leftSidebar {
    order: 1;
}

#rightSidebar {
    order: 3;
}

footer {
    /* background color for footer */
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    /* this centers the footer text */
}

h1 {
    font-size: 25px;
}
.box {
    background-color: var(--mainBGcolor);
    border: 1px solid var(--borderColor);
    padding: 10px;
    border-radius: 4px;
    overflow: auto;
    width: auto;
    height: 150px;
}
.dottedbox {
    border: 4px dotted var(--borderColor);
    padding: 10px;
    border-radius: 4px;
    overflow: auto;
    width: 300px;
    height: 200px;
    font-size: smaller;
}
.themeswitch {
    background-color: var(--mainBGcolor);
    color: var(--mainTextcolor);
    border: 1px solid var(--borderColor);
    border-radius: 4px;
    width: 60px;
    height: 30px;
}
.themeswitch:hover {
    background-color: var(--navbarBGcolor);
    filter: drop-shadow(2px 2px 5px white);
    cursor:
        url("https://ani.cursors-4u.net/nature/nat-11/nat1047.cur"), pointer;
}
::selection {
    background: var(--bgSelection);
    text-shadow: 2px 2px 5px black;
}
#tenna {
    position: fixed;
    left: 90%;
    bottom: -80%;
    width: 100%;
    height: 100%;
}
#dotboxflex {
    display: flex;
    gap: 60px;
}
#adflex {
    display: flex;
    gap: 80px;
}
#weeklyimage {
    border: 1px solid var(--borderColor);
    padding: 10px;
    width: 250px;
    height: 250px;
    display: block;
    margin: auto;
}
.mainbox {
    background-color: var(--mainBGcolor);
    border: 5px solid var(--borderMaincolor);
    border-radius: 4px;
    padding: 20px;
}

/* CSS for extras */

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

/* BELOW THIS POINT IS MEDIA QUERY */

/* so you wanna change the width of your page?
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the
    "max-width" value below
    */

@media only screen and (max-width: 1000px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    #tenna {
        display: none;
    }

    /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
        width: 750px;
        padding-right: 0%;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
    #dotboxflex {
        flex-wrap: wrap;
    }
    #adflex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    #textura,
    #header {
        display: none;
    }
}
