
/* 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 {
  --body-bg-image:url('https://thebeeks.neocities.org/static3.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: PTSans;
    src: url('fonts/PTSans-Regular.ttf');
}

@font-face {
    font-family: PTSans;
    src: url('fonts/PTSans-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: PTSans;
    src: url('fonts/PTSans-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: PTSans;
    src: url('fonts/PTSans-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

@font-face {
    font-family: AzeretMono;
    src: url('AzeretMono-Regular.ttf');
    font-style: italic;
    font-weight: bold;
}

body {
  font-family:'PTSans', sans-serif;
  margin:0;
  background-size:700px; /*The background they're referring to in this section is the background of the entire page, in this case, the TV static */
  color:#ffffff;
  background-image:var(--body-bg-image);
}

* {
  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:1000px; /* 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:#FFBF46;
  font-weight:bold;
  /* if you want to remove the underline
  you can add a line below here that says:
  text-decoration:none; */
}



/* this is the header up top with all the links */
#navbar {
  height:48px;
  background-color:#4C3B4D; /* navbar color */
  width:100%;
  border-radius: 20px 20px 0px 0px; /* This is how you get the rounded edges */
  order:1;
}
   #navbar ul {
  display:flex;
  padding:5px;
  margin:10px;
  list-style-type:none;
  justify-content: left;
  font-size:75%;
  font-family:'AzeretMono', sans-serif;
}
#navbar li {
  padding-top:10px;
}

/* navigation links*/
#navbar li a {
  font-family:'AzeretMono', sans-serif; /* This changes the font, but only in the navbar */
  color:#E4FDE1; /* navbar text color */
  font-weight:800;
  text-decoration:none; /* this removes the underline */
  display:inline-block;
}

/* navigation link when a link is hovered over */
#navbar li a:hover {
  color:#FFBF46;
  text-decoration:underline;
  transform:rotate(-8deg);
}
#flex {
  display:flex;
}

/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
  background-color:#9CBB44;
  width:200px;
  padding:20px;
  display:inline-block;
  font-size:smaller; /* this makes the sidebar text slightly smaller */
}

/* This allows the picture of Len to have zero padding in the sidebar, but the text still does */
aside img {
  margin:-20px;
  display:inline-block;
}

/* This changes the link color for the menu list in the sidebar */
#leftSidebar li a {
  color:#E4FDE1;
}

/* This changes the link color for everything NOT in the menu list in the sidebar */
#leftSidebar a {
  color:#E4FDE1;
}

/* this is the color of the main content area */
main {
  background-color:#119DA4;
  flex:1;
  padding:20px;
  order:2;
  font-size:18.5px;
}

/* 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!

Uncomment this if you want dual sidebars

#leftSidebar {
  order:1;
}
#rightSidebar {
  order:3;
}
*/

/* This is for the footer at the bottom where all the little squares are */
footer {
  background-color:#4C3B4D; /* background color for footer */
  width:100%;
  height:40px;
  padding:5px;
  border-radius: 0px 0px 20px 20px; /* this rounds the corners on the footer */
  text-align:center; /* this centers the footer text */
}

/* This dictates the color of all headlines on the page */
h2, h3 {
  color:#ffffff;
}
h1  {
  font-size:25px;
  color:#ffffff;
}

/* This dictates the color of all bold text on the page */
strong {
  color:#43256e;
}

/* this is just a cool box, it's the darker colored one */
.box {
  background-color:#13092D;
  border:1px solid #ED64F5;
  padding:10px;
}


/* 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: 900px) {
  #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;
  }
  #navbar ul {
    flex-wrap:wrap;
  }
}

/* This is for the scrolling section of the page */
  #scrollbox {
	height: 300px; 
  	overflow-y: auto;
}

/* This is what changes the Len picture to glitch out when you hover over it. 
There are two pictures, a static img and an active img. When
you hover over it, the picture will change from the static one to the active one.
In my case, however, both images are technically animated. But the 'static' one
glitches on a much much slower rate than the 'active' one.*/
.static {
  position:absolute;
  background: white;
}

.static:hover {
  opacity:0;
}

/* This helps resize the Mutant Standard emojis. Shamelessly stolen from Neonaut, at https://neonaut.neocities.org/microblog/2020/12/mutant-standard-emojis */
main img[src*="mutant"] {
  width: 22px;
  height: 22px;
  display:inline;
  vertical-align: text-top;
}