/* zipline freecodecamp news
 * 
 * #4a2b0f - freecodecamp chocolate brown 
 * text is white
 * #e88731 - brown with a lighter shade
 */

body {
   font-family: 'Monda', sans-serif;
   margin: 0;
   padding: 0;
   background-color: #4a2b0f;
}

h1 {
   text-align: center;
   color:   white;
   font-size: 4em;
}

h2 {
   text-align: center;
   color: grey;
   font-size: 2em;
}

.code {
   text-align: center;
    color: grey;
 }

footer {
   text-align: center;
   color: grey;
   font-size: 1em;
   margin: 10px;
   padding: 5px;
}

.blog-box {
   margin: 20px;
   padding: 5px;
   color: white;
   height: 420px;
   width: 270px;
   border: 2px dashed #e88731;
 /*  box-shadow: 3px 3px 3px 3px #e88731; */
   border-radius: 10px;
}


.blog-headline {
   font-size: 1.5em;
   font-weight: bold;
   margin: 5px;
   padding: 5px;
   width: 250px; 
   border: 2px dotted white;
}

.blog-image-wrap {
  width: 250px;
  height: 150px;
  margin: 5px;
  background-color: black;
  background-image: url(../img/codecamp_square.png);*/
  border: 2px solid black;
}

.blog-image {
   width: 250px;
   max-height: 145px;
   min-height: 120px;
   text-align: center;
   padding: 5px;
}

.blog-author {
   font-size: 1em;
   margin: 5px;
   padding: 5px;
   width: 250px;
   height: 100px; 
   /* border: 2px dotted white;*/
}


.blog-author img {
   padding: 2px;
   width: 90px;
   height: 90px;
   float: right;
}
.blog-upvote {
   padding: 5px;
   font-size: 1.5em;
   margin-left: 10px;
   width: 70px;
   height: 30px;
  /* border: 2px dotted white; */
}
.blog-upvote img {
   float: right;
   padding: 2px;
   width: 28px;
   height: 28px;
}


.blog-headline:hover {
    background-color: #e88731;
}


/* animation: example 5s linear 2s infinite alternate; */
  
