:root {
/* Colors */

  --black: #000016; /*Just the color black... or is it?*/
  --latte: #FFF8E7; /* "Cosmic Latte," the average color of galaxies in the universe. */

  /* Blue Variants */

  --darkblue: #09052D;
  --offblue: #130F47;
  --blue: #3337AB;
  --lightblue: #8AA3CA;

  /* Gold */

  --darkgold: #C25D3B;
  --mediumgold: #ECA564;
  --mediumgold-off: #F4C393;
  --lightgold: #FFF6B4;
  --lightestgold: var(--latte);


/* Padding + Margin Values */

  --TJ: 96px;
  --fat: 48px;
  --thick: 24px;
  --medium: 12px;
  --light: 6px;

  }

/*Fonts*/

  /* Header Fonts */

    @font-face {
      font-family: 'Limelight';
      src: url('assets/fonts/Limelight.ttf');
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'Bodega Sans Medium';
      src: url('assets/fonts/Bodega Sans Medium Smallcaps.ttf');
      font-weight: bold;
      font-style: normal;
    }

    @font-face {
      font-family: 'Bodega Sans Light';
      src: url('assets/fonts/Bodega Sans Light Smallcaps.ttf');
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'Bodega Sans Light';
      src: url('assets/fonts/Bodega Sans Light Smallcaps.ttf');
      font-weight: normal;
      font-style: normal;
    }

  /* Gill Sans + Weights/Styles */

    @font-face {
      font-family: 'Gill Sans';
      src: url('assets/fonts/Gill Sans.otf') format("opentype");
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'Gill Sans';
      src: url('assets/fonts/Gill Sans Bold.otf') format("opentype");
      font-weight: bold;
      font-style: normal;
    }

    @font-face {
      font-family: 'Gill Sans';
      src: url('assets/fonts/Gill Sans Italic.otf') format("opentype");
      font-weight: normal;
      font-style: italic;
    }

    @font-face {
      font-family: 'Gill Sans';
      src: url('assets/fonts/Gill Sans Bold Italic.otf') format("opentype");
      font-weight: bold;
      font-style: italic;
    }

  /* Gill Sans Condensed + Weights/Styles */

    @font-face {
      font-family: 'Gill Sans Condensed';
      src: url('/assets/fonts/Gill Sans Condensed.otf') format("opentype");
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'Gill Sans Condensed';
      src: url('assets/fonts/Gill Sans Condensed Bold.otf') format("opentype");
      font-weight: bold;
      font-style: normal;
    }

  /* Gill Sans Medium */

    @font-face {
      font-family: 'Gill Sans Medium';
      src: url('assets/fonts/Gill Sans Medium.otf') format("opentype");
      font-weight: normal;
      font-style: normal;
    }

    @font-face {
      font-family: 'Gill Sans Medium';
      src: url('assets/fonts/Gill Sans Condensed Medium Italic.otf') format("opentype");
      font-weight: bold;
      font-style: italic;
    }

/* End of Fonts */

body {
  background-image: url('assets/images/gradient_bg.png');
  margin: 0;
}

/* Layout CSS */

/* 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;
  margin: 0 auto; /* This centers the entire page */
  padding: 7px;
}

  /* This affects all links *except* navigation. */
  #container a {
    cursor: pointer;
    color: var(--blue);
  }
  
    #container a:hover {
    color: #fff;
    text-decoration:underline;
    cursor: pointer;
    color: var(--lightblue);
    text-shadow: 10px;
    transition: 0.25s;
  }

#flex {
  display: flex;
  margin: 24px;
}

.mainHeader {
  background-color: var(--darkblue);
  width:1100px;
  height:24px;
  margin-top:24px;
}

/* Navigation Bar */


header #navbar {
    display: flex;
    margin-top: 24px;
    margin: 0 auto;
    list-style-type: none;
    background: linear-gradient(0deg,var(--darkblue) 0%, var(--blue) 80%);
    width: 900px;
    padding: 12px 0px 24px 0px;
    border-radius: 12px 12px 0px 0px;
}

 header #navbar ul {
    font-family: 'Bodega Sans Light';
    padding:0px;
    display: contents;
    margin: 0 auto;
    list-style-type: none;
    justify-content: space-evenly;
  }
  
 header #navbar li {
    font-family: 'Bodega Sans Light';
    font-size: 36px;
    list-style-type: none;
    text-align: center;
    margin: 0 auto;
  }

    /* navigation links*/
   header #navbar li a {
      color: var(--mediumgold);
      text-decoration: none;
      padding:24px;
    }
    /* navigation link when a link is hovered over */
  header  #navbar li a:hover {
      color: var(--latte);
      text-decoration: none;
    }
/* --- */

/* Lists */

#navigation ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 96px;
  max-width: 800px;
  height: 512px;
  justify-content: space-evenly;
  text-align: center;
}


#navigation ul li {
    display: block;
  flex-wrap: wrap;
  font-family: 'Bodega Sans Light';
  font-size: 36px;
  width: 80%;
  list-style: none;
  color: var(--blue);
}

#navigation ul li a:not(:hover) {
  list-style: none;
  color: var(--lightblue);
  text-decoration:none;
  transition:0.1s;
}

#navigation ul li a:hover {
  list-style: none;
  color: var(--latte);
  transition: 0.1s;
  text-decoration: none;
  text-shadow: var(--blue) 24px 24px 24px 24px;
}


/* Navigation */

/* --- */


sidenav {
  display: block;
  border-radius: 7px;
  background-image: url('https://files.catbox.moe/39op02.png');
  padding: 7px;
}

  sidenav h4 {
    text-align: center;
    color: var(--darkblue);
  }
  
  sidenav ul{
    padding:10px;
  }

  sidenav ul li{
    list-style: '';
    padding: 10px;
    margin: 4px;
    color: var(--lightblue);
    text-decoration: none;
    text-align: center;
    transition:0.5s;
    text-shadow: #2A78DF;
    background-image: var(--container-bg);
    border-radius: 24px;
    box-shadow:
              		0 1px 0 var(--darkblue),
              		0 1px 0 #2A78DF inset,
              		0 0 0 #2A78DF inset,
              		0 1.10em 0 var(--darkblue) inset,
              		0 -1.10em 1.25em var(--blue2) inset,
              		0 -1.12em 1.30em #2A78DF inset,
              		0 1.10rem 1.25em var(--blue2) inset,
              		0 1.10em 6px #2A78DF inset;
    }
    /* navigation link when a link is hovered over */
    
  sidenav ul li a{
    color: var(--purple);
  }
    
  sidenav ul li a:hover {
    color: var(--purple);
    mix-blend-mode: add;
    text-decoration: none;
    text-shadow: 2px 2px 24px var(--lightblue);
    }

/* --- */

/* --- */

main {
  text-align:center;
  flex: 1;
  margin: 0 auto;
  padding: 24px;
  max-width: 900px;
  overflow: hidden;
  order: 2;
}

main container-left {
  display: flex;
  flex-wrap: wrap;
  float: left;
  max-width: 400px;
}

/* --- */

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

.Left-SideNavigation {
  display: flex;
  order: 1;
}

  #leftSidebar {
    padding: 4px;
    margin: 4px;
    background-image: var(--container-bg);
    max-width: 240px;
    overflow:auto;
    order:1
  }

.Right-SideNavigation {
  display: flex;
  order: 3;
}

  #rightSidebar {
    padding: 4px;
    margin: 4px;
    background-image: var(--container-bg);
    max-width: 240px;
    overflow:auto;
    order:3
  }

.LowerRightSideNavigation {
  display: flex;
  order:4
}

  #LowerRightSidebar {
    padding: 7px;
    background-image: var(--container-bg);
    max-width: 240px;
    overflow:auto;
    order:4
  }


  aside {
    background-color: var(--blue2);
    position:relative;
    border-radius: 7px;
    font-size: smaller;
  }


  .updatebox {
    height: 240px;
    background-image: var(--container-bg);
    border-radius: 14px;
    padding: 7px;
    overflow:auto;
    overflow-y: scroll;
    box-sizing: border-box;
  }
  
  .update {
    color: var(--black);
    padding: 7px;
    padding-left: 12px;
    padding-right: 12px;
    height: auto;
    width: auto;
    background-image: url('https://files.catbox.moe/39op02.png');
    border-radius: 7px;
    margin: 7px;
    font-size: 14px;
  }
  
  .LowerLeft-SideNavigation {
  order: 4;
}


#footer {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  color: var(--peri);
  flex-shrink: 0;
  text-align: center; /* text for footer */
  border-radius: 24px 24px 0 0;
  background-image: var(--container-bg); /* background image for footer*/
  max-height: 100px;
  max-width: 1100px;
  padding: 10px;
  font-size: 70%;
  overflow: hidden;
}


ul-footer {
  display: grid;
  border-radius: 24px;
  list-style: none;
  color: var(--peri);
  text-align: center;
  margin: 0 auto;
  float: left;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 3.5px;
  line-height: 24px;
  order:1;
  height: auto;
  width: auto;
}

  ul-footer li {
    padding:0
  }
  
footer img {
  display:block;
  margin: 0 auto;
  width: 100px;
  height: 80px;
  padding: 40px;
}

ul-media {
  display: grid;
  border-radius: 24px;
  width:112px;
  height:64px;
  list-style: none;
  color:var(--pink);
  margin:0 auto;
  float: right;
  left: 0;
  right: 0;
  bottom: 0;
  overflow:hidden;
  padding: 7px;
  background-color:var(--construct-yellow);
  order:2;
  height: auto;
  width: auto;
}

  ul-media li {
    color: #fff;
    padding: 0px;
    top: 50%;
    left: 50%;
  }
  

            h1,
            h2,
            h3 {
                text-align: center;
            }

            h1 {
                font-family: 'Limelight';
                font-size: 36px;
                color: var(--mediumgold);
              
            }
            h2 {
                font-family: 'Bodega Sans Medium';
                font-size: 24px;
                color: var(--lightblue);
                /*padding: 12px;
                text-shadow: #2A78DF;
              	background-image: var(--container-bg);
              	border-radius: 24px;
              	box-shadow:
              		0 1px 0 var(--darkblue),
              		0 1px 0 var(--blue2) inset,
              		0 0 0 var(--purple) inset,
              		0 1.10em 0 var(--blue2) inset,
              		0 -1.10em 1.25em var(--darkblue) inset,
              		0 1.10rem 1.25em #2A78DF inset,
              		0 1.10em 6px var(--purple) inset;*/
            }

            h3 {
                font-family: 'Bodega Sans Light';
                font-size: 18px;
                color: var(--darkblue);
            }
            h4 {
                font-family: 'Gill Sans Medium';
                font-size: 16px;
                color: var(--black);
            }

            p {
              font-family: 'Gill Sans';
              font-size: 14px;
              color: var(--black);
            }

            strong {
                font-weight: bold;
            }

            /* CSS for extras */

            /* BELOW THIS POINT IS MEDIA QUERY */

            /* If the container is changed, take that value-- */
            /* --then subtract 100px from it. Put the result below. */

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

                aside {
                    width: 100%;
                }
                
                #header {
                  max-width: 1000px }

                /* Order */

                /*
      
                main {
                    order: 2;
                    display:flex;
                }

                #leftSidebar {
                    order: 3;
                    display:flex;
                }

                #rightSidebar {
                    order: 2;
                    display:flex;
                }
                
                #footer {
                    order: 1;
                    display:flex;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }

                */
            }
            

/*Following is for the update box.*/
/*Example: <div class="update">text goes here ~âœ¦</div>*/

/*I don't know HOW or WHY this finally worked, but this is for the scrollbar.*/
* {
    scrollbar-color:var(--mediumgold) rgb(0, 0, 0, 0%);
    /*The first variable (color) is for the scrollbar twinkie itself. The second variable (also a color) is the color of the track.*/
    scrollbar-width:thin;
    border-radius: 0px;
}

::-webkit-scrollbar{
    width: 20px;
    height: 20px;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb{
    background: var(--mediumgold);
    border: 3.5px var(--mediumgold);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover{
    background: var(--lightgold);
    border-radius: 0px
}

::-webkit-scrollbar-track{
    background: rgb(0, 0, 0, 0%);
    border-radius: 0px;
    box-shadow: inset 0px 0px 0px 0px #F0F0F0;
}
/*End of scrollbar CSS*/

#notfound {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align:center;
  margin: 0 auto;
  width: 512px;
  height: 512px;
  background-color: var(--black);
  border-radius: 24px;
  margin-top: 128px;
  padding:20px;
  
}

#notfound loading {
  width: 256px;
  height: 256px;
  content: url('assets/images/404.png');
  margin: 24px auto;
  background-color: var(--backpack-center);
  border-radius:12px;
}

#notfound #404 {
  width: 420px;
  height: 300px;
  content: url('assets/images/404.png');
  margin: 0px auto;
  border-radius:12px;
}

#notfound h2 {
  color: var(--lightblue);
}

#notfound p {
  color: var(--blue);
  padding:24px; 
}

#notfound a {
  color: var(--lightblue);
  text-decoration: none;
}

#notfound a:hover {
  color: var(--latte);
  text-decoration: underline;
}

/* Beginning of classCard CSS (inspired by teamfortress.com) */

#artCard {
  background: linear-gradient(0deg,var(--darkblue) 95%, var(--blue) 100%);
  width: 900px;
  height: 900px;
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 10;
  margin: 0 auto;
  overflow:scroll;
}

#artBio {
  font-family: 'Gill Sans';
  background-color: var(--lightblue);
  position: absolute;
  text-align: left;
  margin: 50px 50px;
  float: left;
  width: 450px;
  height: 600px;
  line-height: 20px;
  overflow: hidden;
  padding: 24px;
}

#artBio a {
  color: var(--lightblue);
  text-decoration: none;
}

#artBio a:hover {
  color: var(--latte);
  text-decoration: underline;
  cursor: not-allowed;
}

#artCardArtist {
  background-image: url('assets/images/artist.png');
  width: 512px;
  height: 600px;
  position: relative;
  background-repeat: no-repeat;
  float: right;
  margin-top:24px;
  margin-left: 48px;
  padding-top: 48px;
  z-index: 11;
    translate: 52px;
}
