:root {
    --header-image: ;
    --body-bg-image: ;
    --accent-color: #ED64F5;
    --text-color: #fceaff;
    --link-color: #a49cba;
    --content-color: #43256E;
    --light-color: #5e4e8c;
    --mid-color: #241445;
    --dark-color: #13092D;
    --darkest-color: #08031A;
/* SUPER: Putting anything here ^ turns it into a variable you can call elsewhere. For example, if you want some text to be one of the colors above, you can put "text-color: var(--accent-color);" this lets you control colors in one place instead of having them spread across your stylesheet (or sprinkled in your .html file). Currently, this list collects the colors used in the layout builder, some of which aren't visible because they're behind images. */
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
    font-style: italic;
}
@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}
/* SUPER: These ^ add the files for the font face to your website. They're currently sourced from the layout maker's website, but you can also get them off of Google. On my website, I have these linked in my HTML file because that's where they were put by the person who made that layout. I don't know what the difference is between doing it either way. */
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: var(--darkest-color);
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 65px;
    color: var(--text-color);
    background-image: var(--body-bg-image);
}
main {
    min-height: 100dvh;
}
/* SUPER: This ^ makes everything stretch to fit the height of the screen ("viewport") no matter how little is in the content boxes. */
* {
    box-sizing: border-box;
}
            /* below this line is CSS for the layout */
            /* 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: 100%;
        /* 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 */
        font-size: 18px;
        /* SUPER: Added this ^ to increase the font size across the page; if you want different font sizes elsewhere, take this out */
    }
        /* the area below is for all links on your page EXCEPT for the navigation */
    #container a {
        color: var(--accent-color);
        font-weight: bold;
        /* if you want to remove the underline you can add a line below here that says: text-decoration:none; */
    }
    #header {
        width: 100%;
        background-color: var(--light-color);
        /* header color here! */
        height: 150px;
        /* this is only for a background image! */
        /* if you want to put images IN the header, you can add them directly to the <div id="header"></div> element! */
        background-image: var(--header-image);
        background-size: 100%;
    }
    /* navigation section!! */
    #navbar {
        height: 40px;
        background-color: var(--dark-color);
        /* navbar color */
        width: 100%;
    }
    #navbar ul {
        display: flex;
        padding: 0;
        margin: 0;
        list-style-type: none;
        justify-content: space-evenly;
    }
/* SUPER: This navbar ul element ^ specifically styles the "container" that holds the navbar links. The navbar li element below styles the individual containers "holding" the links. */
    #navbar li {
        padding-top: 10px;
    }
    /* navigation links*/
    #navbar li a {
        color: var(--accent-color);
        /* navbar text color */
        font-weight: 800;
        text-decoration: none;
        /* this removes the default link underline */
    }
    /* navigation link when a link is hovered over */
    #navbar li a:hover {
        color: var(--link-color);
        text-decoration: underline;
    }
    #flex {
        display: flex;
    }
    /* this styles BOTH sidebars if you want to style them separately, create styles for #leftSidebar and #rightSidebar */
    aside {
        background-color: var(--mid-color);
        width: 25%;
        padding: 20px;
        margin-right: 10px;
        margin-left: 10px;
        margin-bottom: 5px;
        margin-top: 10px;
    }
    /* this is the color of the main content area, between the sidebars! */
    main {
        background-color: var(--content-color);
        flex: 1;
        padding: 20px;
        order: 2;
        margin-right: 10px;
        margin-left: 10px;
        margin-bottom: 5px;
        margin-top: 10px;
    }
    /* 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: var(--dark-color);
        /* background color for footer */
        width: 100%;
        padding: 10px;
        margin-top: 10px;
        text-align: center;
        /* this centers the footer text */
    }
    h1, h2, h3 {
        color: var(--accent-color);
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 25px;
    }
    h2::after {
        content: "";
        display: block;
        background: linear-gradient(90deg, var(--accent-color), rgba(255, 255, 255, 0)); 
        height: 3px;
    }
/* SUPER: This ::after element ^ adds a line underneath H2s. I use this on my site, you can remove it or give it to a different header */
    h3 {
        font-size: 22px;
    }
    strong {
        /* this styles bold text */
        color: var(--accent-color);
    }
    /* this is just a cool box, it's the darker colored one */
    .box {
        background-color: var(--dark-color);
        border: 1px solid var(--accent-color);
        padding: 10px;
    }
    /* CSS for extras */
    #topBar {
        width: 100%;
        height: 30px;
        padding: 10px;
        font-size: smaller;
        background-color: var(--dark-color);
    }
/* SUPER: This code ^ doesn't effect anything currently. If you want the corresponding topBar HTML, you can go to the codepen link, open the "Extra Options" toggle in the panel,
check "Top bar (above header)," click the "Generate Layout" button, and copy the HTML inside the div labeled "topBar." This would go above the existing headerArea div in the HTML file. */

/*! 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 */
/* SUPER: I left this ^ comment here even though I've changed sizes to percentages (rather than px) throughout. */

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }
    aside {
        width: 100%;
    }
/* 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;
    }
    #rightSidebar {
        order: 3;
    }
    #navbar ul {
        flex-wrap: wrap;
    }
}