html {
  font-family: "Open Sans", sans-serif;
}
div {
  width: 1000px;
  margin: 0 auto;
}
a {
  width: 300px;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
}
a:hover h2 {
  color:#e1001a;
}
a:hover img {
  transform:scale(1.03);
}
a:nth-of-type(2) {
  margin:0 50px;
}
img {
  max-width:100%;
  display: block;
  transition:.3s all ease-in-out;
}
.category {
  background-color:#eee;
  color:#686868;
  font-size: 13px;
  text-transform: uppercase;
  padding:5px;
  display: inline-block;
  margin-top: 10px;
}
h2 {
  color:#051f3a;
  line-height:20px;
  font-size: 18px;
  transition:.3s all linear;
}

@media screen and (max-width:1000px) {
  div {
    width: 300px;
  }
  a {
    margin-bottom: 15px;
  }
  a:nth-of-type(2) {
    margin:0 0 15px 0;
  }
  .category {
    display: none;
  }
  img {
    border-radius:15px;
  }
  h2 {
    font-size: 15px;
  }
}