:root {
  --site-bg: url("/jonquil.jpeg");
  /*or like this for just a solid color:*/
  /*--site-bg: #FFE1C6; */
  
  --post-bg: #FCFBF7;
  --post-text: #36342F;
  --post-header-text: #71714b;
  --border-color: #71714b;
  --border-shadow: #71714b;
  
  --nav-text: #f2eee8;
  --nav-bg: #71714b;
  --nav-button-bg: #97a24d;
  --nav-button-bg-hover: #dab260;
  --nav-button-text: #dab260;
  --nav-button-text-hover: #0E130F;
  --nav-border-color: #dab260;
}
body {
    background-color: #D6D0C8;
    background-image: url("/images/jonquil.jpeg");
    background-image: ;
    margin-top: 0px;
}

#all {
    width: 1000px;
    position: relative;
    left: 10%;
 
}

#header {
    background-color: #4E4B44;
    background-image: "/Banner.png";
    color: #d9d3c5;
    font-family: 'Special Elite', serif;
    border-radius: 0px 0px 7px 7px;
    width: 860px;
    height: 105px;
    margin-left: 200px;
    box-shadow: 5px 5px #302A27;
}

#header h1 {
    margin: 0px;
    font-weight: normal;
    text-align: center;
    font-size: 40px;
    line-height: 105px;
    text-shadow: 3px 3px #302A27;
}

#img {
    background-image: url('https://i.imgur.com/qnZzOWz.png');
    position: absolute;
    top: 8px;
    right: -40px;
    width: 175px;
    height: 175px;
    z-index: 2;
}

#maincontainer {
    width: 1000px;
    
}

.postcontainer {
    width: 820px;
    position: relative;
    top: 10px;
    left: 170px;
    color: #302A27;
}

.icon {
    width: 100px;
    height: 100px;;
    position: absolute;
    top: -45px;
    z-index: 3;
}

.post {
    background-color: #faf7f5;
    width: 1000px;
    box-shadow: 5px 5px #302A27;
    margin-top: 55px;
    margin-left: 35px;
}

.subheaders {
    text-align: right;
    padding: 5px 5px 0px 0px;
    margin: 0px;
    font-weight: normal;
    font-family: 'Special Elite', serif;
    font-size: 20px;
}

.date {
    text-align: right;
    padding: 0px 5px 0px 0px;
    margin: 0px;
    font-weight: normal;
    font-family: 'Special Elite', serif;
    font-size: 14px;
    text-decoration: underline;
    text-decoration-style: dashed;
}

.posttext {
    padding: 15px;
    text-align: justify;
    letter-spacing: 1px;
    h1 {
      color: green;
    }
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: #302a27;
}

::-webkit-scrollbar-thumb {
    background-color: #615955;
}

#credit {
    font-size: 12px;
    position: fixed;
    bottom: 0;
    right: 0;
}

#nav {
    position: fixed;
    top: 0px;
    left:1%;
    width: 305px;
    height: 1000px;
    background-color: #71714b;
    border-radius: 0px 0px 7px 7px;
    text-align: center;
    font-family: 'Special Elite', serif;

}
#nav nav ul {
  text-align: center;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 1em;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
  justify-content: space-evenly;
}
#nav nav li a {
  /*set a width so they're the same size*/
  min-width: 120px;
  display: inline-block;
  background: var(--nav-button-bg);
  color: var(--nav-button-text);
  font-weight: bold;
  border-radius: 1rem;
  transition: .2s;
  text-decoration: none;
}
#nav nav li a:visited {color: var(--nav-text);}
#nav nav li a:hover {
  background: var(--nav-button-bg-hover);
  color: var(--nav-button-text-hover);
  outline: 2px solid var(--nav-text);
  outline-offset: 3px;
}
/*and add some spacing around them too*/
#nav nav {
  margin-block:1.5em;
}

#nav li {
/*you can change the normal dot to anything you want :)*/
  /*list-style-type: "♥ ";*/
/*i used stars to match the bg image!*/
  list-style-image: url("/images/jonquil.png");
}

ul {
    padding: 0px;
    margin: 0px;
}

li {
    list-style-image: url("/images/jonquil.png");
    margin: 7px 0;
}

a {
    color: #d9d3c5;
    text-decoration: none;
}

a:visited {
    color: #d9d3c5;
}

a:hover {
    color: #d9d3c5;
    font-style: italic;
}

a:active {
    color: #d9d3c5;
    font-style: italic;
    font-weight: bold;
}
#profile p {
  margin-block: .3em;
  line-height: 1.5em;
}
/*styling the simple bio block*/
#bio {
  border-block: 2px dashed var(--sidebar-border-color);
  padding-block: .5em;
  margin-block: 1em;
  font-size: small;
}
