/* 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('frogs.jpg');
    --body-bg-image: url('stars.gif');

    /* colors */
    --content: #1b0041;
}

/* 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!

*/
body {

    #statuscafe {
        padding: .5em;
        background-color: rgb(7, 30, 104);
        border: 3px ridge rgb(200, 255, 0);
    }
    #statuscafe-username {
        margin-bottom: .5em;
        color: rgb(200, 255, 0)
    }
    #statuscafe-content {
        margin: 0 1em 0.5em 1em;
    }
    margin: 0;
    background-color: #08031A;
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 65px;
    color: #0899bd;
    cursor: url(https://cur.cursors-4u.net/toons/too-5/too441.cur);
    background-image: var(--body-bg-image);
    }

* {
    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! */
    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: #ff0000;
    /* if you want to remove the underline
you can add a line below here that says:
text-decoration:none; */
}

#header {
    width: 100%;
    /* 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: linear-gradient(0deg, #00014b, rgb(23, 4, 129));
    /* navbar color */
    width: 100%;
    border-bottom: ridge;
    border-top: 2px ridge;
    border-color:blue;
    border-top-color: blue
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 7px;
}

/* navigation links*/
#navbar li a {
    color: #ff0000;
    /* navbar text color */
        text-decoration: none;
    /* this removes the underline */
}
#button {
    background: linear-gradient(0deg, rgb(25, 3, 105), blue);
    border: 1px solid red;
    border-radius: 1.5px;
    box-shadow: 2px 3px 0px black;
	font-weight:thin;
    box-shadow: inset 0px -1px 0px 0px blue;
    text-shadow: 1px 1px 0px rgb(25, 3, 105);
	color:red;
}
#button:hover {
    background: linear-gradient(0deg, blue, rgb(25, 3, 105));
    border: 1px solid red;
    border-radius: 1.5px;
    box-shadow: 1px 3px px black;
    box-shadow: inset 0px 1px 0px 0px blue;
	font-weight:bold;
	color:red;
}  

/* navigation link when a link is hovered over */
#navbar li a:hover {
        text-decoration: underline;
}

#flex {
    display: flex;
}

/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
    background-color: #000014;
    border-top: 0px #000014;
    border-right: 3px groove blue;
    width: 200px;
    padding: 20px;
    font-size: smaller;
    /* this makes the sidebar text slightly smaller */
}


/* this is the color of the main content area,
between the sidebars! */
main {
    background-color: #000131;
    flex: 1;
    padding: 20px;
    order: 2;

.hidden {
    display: none;
}
}

/* 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: #dacc0d;
    text-shadow: 2px 2px 0px #001b74;
}

h1 {
    font-size: 25px;
}

p {
    text-shadow: 1px 2px 0px #001b74;
}

strong {
    /* this styles bold text */
    color: #dacc0d;
}

li::before.star { 
    content: '★';
    margin-left: -20px;
    margin-right: 10px; 
} 

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #000000;
    border: 3px inset #dacc0d;
    padding: 10px;
    text-shadow: 1px 1px 0px #001b74;
}

section.cool {
    background:linear-gradient(0deg, #000131, #050211);
    border-style: double;
    border-color: red;
    padding:10px;
}

div.art {
    width:450px;
    margin:10px;
    background:linear-gradient(0deg, #050211, #000131);
    border: 2px solid #000131;
    padding:10px;
}
/* CSS for extras */

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092D;
}

.parent {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
}
    .grid-container {
      display: grid;
      width: 100px;
      align-content: center;
      grid-template-columns: auto auto auto;
      gap: 7.5px;
      padding: 10px;
    }

    .grid-container > div {
    background: linear-gradient(0deg, #000131, #050211);
    border-style: double;
    border-width: 1px;
    border-color: yellow;
    padding: 2px;
    text-align: center;
    
    }


/* 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: 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;
    }

}