/* user styles */

/* styles are what change the color and sizes of stuff on your site. */

/* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

:root {
    --header-image: url("https://sadhost.neocities.org/images/layouts/wp.jpeg");
    --body-bg-image: url("https://sadhost.neocities.org/images/tiles/purplesky.gif");

    /* colors */
    --content: #43256e;
}

/* if you have the URL of a font, you can set it below */
/* feel free to delete this if it's not your vibe */

/* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */

@font-face {
    font-family: Nunito;
    src: url("https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf");
    font-style: italic;
    font-weight: bold;
}
html {
    scrollbar-width: thin;
}
body {
    font-family: "Times New Roman";
    margin: 0;
    background-color: #08031a;
    background-attachment: fixed;
    /* you can delete the line below if you'd prefer to not use an image */
    color: #fceaff;
    background-image: url(images/UIHere.jpg);
}

* {
    box-sizing: border-box;
}

/* 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: 900px;
    /* 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! */
    background-image: url(images/goreyImage.png);
    margin-top: 100px;
    margin: 0 auto;
    margin-bottom: 20px;
    height: 1200px;
    border: groove 10px #d81424;
}
/* this centers the entire page */

/* the area below is for all links on your page
    EXCEPT for the navigation */
#container a {
    color: #d81424;
    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: #00ffd6;
    /* 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: url(images/banner.gif);
    background-size: 100%;
}

#divider {
    width: 100%;
    height: 42px;
    background-image: url(images/tumblr_acdaf021feb234d29449323415e0664f_7b70b94e_1280.png);
    background-size: 100%;
}

/*#navbutton {
    width: 180px;
    background-image: url(images/navigation.png);
}*/
/* navigation section!! */
#navbar {
    height: 40px;
    background-color: #13092d;
    /* 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: #d81424;
    /* navbar text color */
    font-weight: 800;
    text-decoration: none;
    /* this removes the underline */
}

/* navigation link when a link is hovered over */
#navbar li a:hover {
    color: #a49cba;
    text-decoration: underline;
}

#flex {
    display: flex;
}

/* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
#leftSidebar {
    background-color: #ff6e72;
    width: 200px;
    margin-top: 10px;
    padding: 10px;
    height: 600px;
    font-size: smaller;
    border: groove 10px #d81424;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    /* this makes the sidebar text slightly smaller */
}

/* #rightSidebar {
    background-color: #ff6e72;
    width: 300px;
    margin-top: 10px;
    padding: 10px;
    height: 300px;
    font-size: smaller;
    border: groove 10px #d81424;
    overflow-y: scroll;
    this makes the sidebar text slightly smaller */

#rightSidebar {
    width: 300px;
    margin-top: 10px;
}

#updates {
    background-color: #ff6e72;
    border: groove 10px #d81424;
    height: 300px;
    overflow-y: auto;
    color: #d81424;
}
/* this is the color of the main content area,
    between the sidebars! */

#guestbook {
    background-color: #ff6e72;
    border: groove 10px #d81424;
    height: 500px;
    margin-top: 10px;
    font-size: smaller;
    overflow-y: auto;
}
#mid {
    background-color: #ff6e72;
    height: 500px;
    width: 400px;
    margin-top: 10px;
    flex: 1;
    order: 2;
}

/* 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: #13092d;
    /* background color for footer */
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    /* this centers the footer text */
}

h1,
h2,
h3 {
    color: #d81424;
}

h1 {
    font-size: 25px;
}

strong {
    /* this styles bold text */
    color: #d81424;
}

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #ff9a9d;
    border: 1px solid #d81424;
    padding: 10px;
}

/* CSS for extras */

#topBar {
    margin-top: 20px;
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #ffb0b2;
}

.subhead {
    margin-top: 5px;
    color: #fff7cf;
    border-radius: 5px;
    border-color: #d81424;
    background-color: #d81424;
    border-style: solid;
    padding: 5px;
}

ul {
    padding-inline-start: 1em;
}

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}
