/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/*organizational*/

/*  border: 2px solid magenta; <- line for when i need to highlight a div */

body {
  text-align: right;
  background-color:DarkSlateGrey;
  color: black;
  font-family: Courier;
  background-image:url(assets/cicadaTile2.png);
  background-size: 500px;
}

/* containers */ 

#fullscreenGrid {
 display: grid;
 grid-template-rows: repeat(9, 120px);
 grid-template-columns: repeat(15, 120px);

}

/* grid notes: justify = rows, align = columns */
.gridContainer {
 display: grid;
 width:75%;
 height: 700px;
 margin: 0 auto;
 grid-template-rows: repeat(7, 1fr);
 grid-template-columns: repeat(13, 1fr);
 /* grid-gap: 25px; */
 /* grid-template-columns:repeat(auto-fit, minmax(100px, 100px)); */
 border: 2px solid black;
}
.topContainer {
  display: grid;
  width: 75%;
  height: 150px;
  margin: 0 auto;
}

.flexContainer {
  display: flex;
  width: 75%;
  margin: 0 auto;
  border:2px solid magenta;
  text-align: right;
  justify-content: flex-end;
}  



#pageTitle {
  justify-content: center;
  width: 100%;
  height: 100px;
  border: 2px solid red;
}

#navbar {
  display: flex;
  width: 100%;
  height: 50px;
  border: 2px solid orange;
}

.box {
  border:48px solid transparent;
  border-image:url(assets/boxBorder.png) 33% fill repeat;
  image-rendering: pixelated;

}

.blog {
  grid-row: 1 / 4;
  grid-column: 4 / 9;
 /* margin: 12.5px; */
  /* border: 2px solid yellow; */
  
}

.shrines {
  grid-row: 1 / 4;
  grid-column: 9 / 14;
}

.currentProject {
  grid-row: 4 / 8;
  grid-column: 7 / 12;
}

.stats {
  grid-row: 4 / 6;
  grid-column: 4 / 7;
}

.sidebar {
  grid-row: 1 / 8;
  grid-column: 1 / 4;
}
.stamps {
  grid-row: 4 / 8;
  grid-column: 12 / 14;
}

.logbook {
  grid-row: 6 / 8;
  grid-column: 4 / 7;
}

/* blog entry page template */

.entryContainer {
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
 align-items: flex-end;
 width: 60%;
 border: 2px solid blue;
}

.blogEntry {
  width: 90%;
}  

.speakingBug {
  rotate: 135deg;
  margin: 50px;
}  

.treeBranch {
 z-index: 100;
 size: 600px;
 grid-row: 
 border: 2px solid lime; 

}

/* weird previous attempt at styling that im putting on the backburner for now */

#header {
 width:100%;
 margin:0 auto;
 background-color:darkGray;
}

#navbar {
 width:100%;
 height:40px;
 background-color:white;
}

#navbar ul {
 display:flex;
 list-style-type:none;
 justify-content:space-evenly;
 padding:0;
 margin:0;
}

#navbar li {
 padding-top:10px; 
}

aside {
 background-color:gray; 
 width:200px;
 padding:20px;
 font-size:smaller;
}

#flex {
 display:flex; 
}
/*components*/

#headerImage {
  display:flex;
 margin:0 auto;
}

/* <------------------------------------------------------------------------------------------------------------------------------------------> */

a {
 text-decoration:none;
 color: black;
}

a:hover {
 text-decoration:underline; 
 text-decoration-style: wavy;
 font-weight:bold;
}

a:click {
 color: red; 
}
/*individual pages*/

#landingPageBG {
 background-color:black; 
 margin:0 auto;
}

h1 {
 text-align: right;
 color: black;
 text-shadow: -2px -2px 0 #D2B48C, 2px -2px 0 #D2B48C, -2px 2px 0 #D2B48C, 2px 2px 0 #D2B48C, -2px -1px 0 #D2B48C, 2px 1px 0 #D2B48C, -2px 1px 0 #D2B48C, 2px -1px 0 #D2B48C, 1px 2px 0 #D2B48C, -1px -2px 0 #D2B48C,  -1px 2px 0 #D2B48C,  1px -2px 0 #D2B48C;
}

h2 {
  text-shadow: -2px -2px 0 #D2B48C, 2px -2px 0 #D2B48C, -2px 2px 0 #D2B48C, 2px 2px 0 #D2B48C, -2px -1px 0 #D2B48C, 2px 1px 0 #D2B48C, -2px 1px 0 #D2B48C, 2px -1px 0 #D2B48C, 1px 2px 0 #D2B48C, -1px -2px 0 #D2B48C,  -1px 2px 0 #D2B48C,  1px -2px 0 #D2B48C; 
}

h3 {
 text-shadow: -2px -2px 0 #D2B48C, 2px -2px 0 #D2B48C, -2px 2px 0 #D2B48C, 2px 2px 0 #D2B48C, -2px -1px 0 #D2B48C, 2px 1px 0 #D2B48C, -2px 1px 0 #D2B48C, 2px -1px 0 #D2B48C, 1px 2px 0 #D2B48C, -1px -2px 0 #D2B48C,  -1px 2px 0 #D2B48C,  1px -2px 0 #D2B48C;  
 padding: 0px;
 margin: 0px;
}

li {
 list-style-type: none; 
 background-color: #D2B48C;
}

p {
 background-color: #D2B48C; 
}

.fakeList {
 margin: 5px;
}

mark {
 background-color:#D2B48C; 
}

.fakeParagraph {
  margin: 0px;
}

.section {
 outline: green; 
}
















