/* 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." */

body {
  background-color: #114945;
  background-image: url('./../images/bg_diamond.png');
  background-position: top;
  font-size: 16px;
  font-family: "Calibri", sans-serif;
  /*font-family: Arial, Helvetica, sans-serif;*/
  margin: 0;
  color:#444;
}

#myInput {
  background-image: url('./../images/searchicon.png');
  background-position: 10px 12px;
  background-repeat: no-repeat;
  width: 300px;
  height: 20px;
  font-size: 16px;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

p {
  line-height: 1.5em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

img {
  max-width: 90%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .small {
    max-width: 50%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

button{
    background: #574250;
    padding: 6px;
    color: #fffffe;
    }

a:hover { 
  background-color: #eecdc2;
}
/*The horizontal rule appears at the top of the footer to visually separate the footer from the content. You can also use <hr> to divide sections in the content!*/
hr {
  border-width: 5px 0 0 0;
  border-style: dotted;
  border-color: #574250; 
}


h1 {
  background: ;
  color: #714e54;
  font-family:"Candara", serif;
}

h2 {
  background: ;
  color: #714e54;
  font-family: "Brush Script MT", cursive;
}

h3 {
  background: ;
  color: #714e54;
  font-family: "Verdana", sans-serif;
}

h4 {
  background: ;
  color: #714e54;
  font-family: "Trebuchet MS", sans-serif;
}

h5 {
  background: ;
  color: #714e54;
  font-family: "Monospace", sans-serif;
}

#content a {
  background: ;
  color: #714e54;
  font-family: ;
}

#content a:hover{
  background: ;
  color: #714e54;
}

    

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
  max-width: 800px;
  background-color: #efefef;
  color: #353535; 
  outline-color: #c1c0b5;
  outline-style: ridge;
  outline-width: 4px;
  outline-offset: 0;
}

#content {
  padding: 10px 5% 20px 5%;
}


/*HEADER STYLE*/
#header {
  background-color: #062e24;
  padding: 0 5%;
  border-color: #c1c0b5 ;
  border-style: ridge;
  border-width: 0 0 4px 0;
}


#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}
#header li a {
  color: #4d7c80;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}

#header li a::before {
  content: "\1F338";
}
/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1em;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 1em;
  padding: 0;
  list-style-type: none;
}
.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
  text-align: center;
  color: #333;
}

/* Styling the entire description list */
dl {
  width: 50%;
  margin: 0px auto 20px auto;  
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 15px;
  background-color: #f9f9f9;
}

/* Styling the terms */
dt {
  font-weight: bold;
  color: #333;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 1.1em;
}

/* Styling the definitions */
dd {
  margin-left: 20px; /* Indentation for definitions */
  color: #666;
  line-height: 1.5;
  font-style: italic;
}

/* Example of a class-based styling for a specific term */
.important-term {
  color: #c00;
  text-decoration: underline;
}