/* 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." */
html{
  font-family: Verdana, sans-serif;
}

body {
  background-image: url('../images/cowhmm.jpg');
  background-size: 200px;
  background-repeat: repeat;
  background-attachment: fixed;
}

main {
  background-color: #ffffff;
                flex: 1;
                padding: 50px;
                order: 2;
                border: 1px;
}

p {
  line-height: 1.5em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

hr {
  border: dashed #000000;
  border-width: 1px;
}


.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: 60%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

a:hover { 
}

h1, h2, h3, h4, h5 {
}

h1 {
  font-size: 1.5em;
  color: #000000;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 0 auto;
  width: 100%;
	max-width: 800px;
	background-color: transparent;

}

#content {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
  border-style: dashed;
  border-width: 1px;
}


/*HEADER STYLE*/
#header {
  background-color: transparent;
  width: 100%;
  height: 300px;
}
#header ul {
}
#header li {
}
#header li a {
  color: white;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: underline;
}
/*NAVBAR*/
 #navbar {
                height: 40px;
                background-color: #000000;
                border: 1px;
                border-style: dashed;
                border-color: #ffffff;
                /* navbar color */
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
               padding-top: 10px;
            }

            /* navigation links*/
            #navbar li a {
                color: #ffffff;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #ffffff ;
                text-decoration:line-through;
            }

            #flex {
                display: flex;
}
/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
  color: #000000;
}
.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 {
                background-color: #000000;
                /* background color for footer */
                width: 800px;
                margin-left:auto;
                margin-right:auto;
                height: 60px;
                padding: 20px;
                text-align: center;
                border: 1px dashed;
}