*{
  box-sizing: border-box;
}

html {
  font-family: "Open Sans", sans-serif;
}

.wrapper{
  max-width: 1000px;
  margin: 0 auto;
}

a{
  display: inline-block;
  width: 300px;
  vertical-align: top;
  text-decoration: none;
}

img{
  max-width: 100%;
  transition: .3s all ease-in-out;
}

a:nth-of-type(2){
  margin:0 50px;
}

.category {
  display: inline-block;
  background-color: #EEE;
  color: #686868;
  margin-top: 10px;
  padding: 5px;
  border-radius: 2px;
  font-size: 13px;
  text-transform: uppercase;
}

h2 {
  font-size: 18px;
  line-height: 20px;
  color: #051f3a;
  transition: .3s all ease-in-out;
}

article:hover img {
  scale: 1.02;
}
article:hover h2 {
  color: #E1001A;
}

@media screen and (max-width:1000px) {
  a{
    display: block;
    margin: auto;
  }

  a:nth-of-type(2){
    margin: 10px auto;
  }

  /* .wrapper{
    width: 300px;
  } */

  article{
    position: relative;
  }
   img{
    border-radius: 15px;
   }
   .category{
    display: none;
   }
   h2{
    position: absolute;
    bottom: 10px;
    left:50%;
    translate: -50% 0;
    background-color: #f8efef;
    padding: 0 10px;
    width: 90%;
    font-size: 15px;
    border-radius:0 15px 0 15px;
    opacity: 0.8;    

   }
}