body {
  background-image: url('../images/cardboard.jpg');
}

.layout {
  margin: 0 auto;
  max-width: 900px;
  background-color: white;
}
/* media */
.media {
  display: grid;
  padding: 16px;
  margin-bottom: 20px;
  border-bottom: 2px dashed rgb(124, 124, 124);
}

.media img {
  image-rendering: pixelated;
  min-height: 340px;
  max-height: 400px;
}

@media (max-width: 700px) {
  .media img{
    width: 100%;       /* fill the container's width */
    height: auto;      /* maintain aspect ratio */
    object-fit: contain; /* optional, ensures image fits without cropping */
    
  }
}


.media h4{
  font-family: 'Roboto';
  font-size: 1.2rem;
  font-weight: bold;
  margin: 8px 0px;
}

.media p{
  font-family: 'Roboto';
  font-size: 1.05rem;
  margin-bottom:8px;
  
}
.media time {
  font-family: 'Roboto';
  color: rgb(18,18,18); 

  justify-self: end;
}
.media a{
  color:  #36c;
  text-decoration: none;
}
.media a:hover{
  text-decoration: underline;
}
.comment {
  vertical-align: super;
  color: hsl(0, 0%, 40%);
  font-size: 0.8rem;
}