body {
  display: grid;
  justify-items: center;
  background-image: url("Images/stone-road-blog-1.6.jpg") !important;  background-size: cover;
  background-repeat: no-repeat;
  position: static;
  background-attachment: fixed;
  scrollbar-width: thin;
  margin: 0px;
}

.blog-navigation {
  grid-column: auto / span 12;
  background-color: black;
}

.blog-navigation-six {
  grid-column: auto / span 6;
  background-color: black;
}

.blog-navigation a, .blog-navigation-six a {
  text-decoration: none;
  color: Coral;
}

a:hover {color: deeppink;}

.blog-post, .blog-footer {
  padding: 15px;
  text-align: center;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 1fr auto;
  width: 40vw;
  text-align: center;
}

.blog-column {
  grid-column: auto / span 12;
  background-color: AntiqueWhite;
  border-left: solid black 3px;
  border-right: solid black 3px;
}

.blog-column p {
  text-align: justify;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1em;
}

.blog-column a {
  text-decoration: none;
  color: black;
}

.blog-column img {
  width: 100%;
}

.blog-post {
  border: solid SaddleBrown 2px;
  background-color: AliceBlue;
  margin: 30px;
}

.blog-post:hover {
  background-color: SaddleBrown;
  color: AntiqueWhite;
  transition-duration: 0.5s;
}

.blog-post-picture {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30vh;
  overflow:hidden;
}

.blog-post-picture img{
  object-fit: cover;


.blog-post-title {
  text-align: left;
}

.blog-footer {
  grid-column: auto / span 12;
  background-color: black;
}

figcaption {
    font-family: arial;
    text-align: center;
    padding-top: 5px;
    color: DimGrey;
    font-size: 12px;
}

@media only screen and (max-width: 700px) {
  .blog-container {width: 90vw;}
}
