/* 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(cicadaTile2.png);
  background-size: 500px;
}

#container {
 width:90%;

 margin: 0 auto;
}

#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; 
}

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

p {
 background-color: #D2B48C; 
}

.fakeList {
 margin: 5px;
}

mark {
 background-color:#D2B48C; 
}


















