
/*This css template was originally by eggramen on neocities. I have rearranged things to my liking but left a lot of their notes */

/* This section separates out the color properties for easier access */
  body {
  background: linear-gradient(#15384c, #0d1524); 
  color: #dfbd94;
  }
  
  a {
  color: #dfbd94;
  }
  
  .post, .post-scroller {
  border: 0px solid #936f6f;
}

#footer {
  background: #0c0703;
  color: #dfbd94;
}

#footer a {
  color: #dfbd94;
  }

.readmore-link a {
  font-weight: bold;
  color: #dfbd94;
  }
  
  
  /* End of separated colors */
  
  body {
  font-family: arial;
    margin: 0;
  }
  
  h1, h2, h3 {
  font-weight: 900;
   font-family:papyrus; font-size:2em;
  }

  /*Sticky navigation links at the top of the page.*/
.quick-nav {
  position: fixed; top: 0; right: 0;
  z-index: 999;
  width: 100%;
  background: #0d1524;
  text-align: right;
  color: #dfbd94;  
  font-size: 0.875em;
  }
  
.navbar {
  padding: 1px 25px;
  }
  
.navbar a {
  display: inline-block;
  text-decoration: none;
  color: #dfbd94;
  padding: 5px 4px;
  margin: 0 2px;
  }
  
.navbar a:hover, .footer a:hover, .navbar a:focus, .footer a:focus {
  color: #edeef3;
  transition: ease-in 0.1s, ease-out 0.1s;
  }
  
  
  
/*Inserts a header section with the chosen image at the top of the page. Goes before the header div.*/
#header-image {
  height: 200px;
  top: 0;
  width: 100%;
  background: no-repeat;
  background-size: cover;
  margin-bottom: 30px;
  }
  
/*This is where your header stuff goes. The inside uses the post-inner class like posts do, instead of having a separate class name.*/
/*(If you want to give it different behavior, then add a #header .post-inner {} after the rules for .post-inner to make a special ruleset for it.)*/
#header {
  border: 0px solid #a10000;
  width: 80%;
  height: 15em;
  margin: 15px auto;
  padding: 1em;
  background: url(images/pixelscroll.png); 
  /*height: 100%; */
  background-repeat: no-repeat; 
  background-position: center; 
  background-attachment: scroll; 
  background-size: 40em;
  font-family:papyrus;
  }
  
  
/*Normally inside the header.*/
#description {
  padding: 10px;
  margin: 10px auto;
  color: #4a2b1b; font-family:papyrus; font-weight: bold; font-size:1.3em;
  }
  
  h1, h2, h3, #description {
  text-align: center;
  }

/*Contains the columns of posts.*/
.column-wrapper {
  columns: 3;
  min-height: 80%;
   width: 80%;
  margin: 0 auto;
  column-gap: 30px;
  
  }
  
  
  
  
/*Variable and fixed-height boxes.*/
.post, .post-scroller {
  display: inline-block;
  margin: 0 auto;
  overflow-y: auto; /*To give fixed-height posts a scroller, and make images outside the post-inner div conform to rounded corners.*/
  border-radius: 25px;
  margin-bottom:30px;
  width: 100%;
  background-image: radial-gradient(circle at center in hsl shorter hue,#271d16, #0c0703);
  }
  
.post img, .post-scroller img { /*Prevent image overflow.*/
  max-width: 100%;
  height: auto;
  }
  
/*Fixed-height box.*/
.post-scroller {
  height: 500px;
  }
  
.post-inner { /*because padding doesn't play nice with divs directly inside columns*/
  margin: 20px;
  }
  
/*Special optional styling for images used as post headers.*/
.post-head-image {
  padding: 0;
  }
  
  #footer {
  min-height:1em;
  margin-top: 10px;
  bottom: 0;
  font-size: .8em;
  }
  
#footer li {
  padding-left:0;
  padding-top: 2px;
  padding-bottom: 2px;
  list-style-type: none;
  }
  
.footer-columns {
  border:0px black solid;
  margin: 0 auto;
  width: 75%;
  }
  
.footer-column {
  text-align: left;
  height:6em;
  width: 100%;
  padding: 10px;
  padding-top:0;
  }




  
/*Variant footer. This will stick at the bottom of the page, and overlap anything that gets too close. Use only for pages too short to scroll.*/
#footer-sticky {
  position:fixed;
  width: 100%;
  background: #096b42;
  color: #fff;
  min-height:1em;
  bottom: 0;
  margin-top: 10px;
  margin-bottom:0;
  }
  
#footer-content {
  /*For some reason the padding needs at least 1px top and bottom or else it automatically gets a giant margin instead. I still don't know why it does that. Just don't make it 0.*/
  padding:1px; 
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  }
  
  
/*For making columns in the footer like demonstrated.*/
.footer-columns {
  columns: 3;
  width: 80em;
  margin: 0 auto;
  column-gap:10px;
  }
  
/*For when you want to make distinct columns of different stuff without a million <br>s.*/
.footer-column {
  text-align: left;
  display: inline-block;
  height:6em;
  width: 100%;
  padding: 10px;
  padding-top:0;
  }
  
  /*Looks similar to footer but just covers a big section.*/
.block-color-section {
  background: #fff;
  color: white;
  min-height:1em;
  margin-top: 10px;
  margin-bottom:20px;
  }
  
.block-color-inner {
  padding:10px;
  padding-left: 10%;
  padding-right: 10%;
  margin: 0 auto;
  }
  
/*Used to style lists of links without big obvious bullets.*/
#footer li {
  padding-left:0;
  padding-top: 2px;
  padding-bottom: 2px;
  list-style-type: none;
  }


@media(max-width:80em) { /*Allow smaller side margins on narrower screens.*/
  #header, #description, .column-wrapper, .footer-columns {
    width: 90%;
    }
    
  }  

@media(orientation:portrait) { /*Removes columns entirely for mobile*/
  .column-wrapper, .footer-columns {
    columns: 1;
    }
  
}