body {
  margin:0;
  font-family: "Open Sans", sans-serif;
  /* background-color:aquamarine;
  background-image:url('https://ik.imagekit.io/yynn3ntzglc/cms/medium_Accroche_focus_munchkin_40c041515f__iRyB8zAS.jpg');
  background-repeat:no-repeat;
  background-size:200px;
  background-position:top right;
  background-attachment: fixed; */
  background: aquamarine url('https://ik.imagekit.io/yynn3ntzglc/cms/medium_Accroche_focus_munchkin_40c041515f__iRyB8zAS.jpg') no-repeat top right / cover fixed;
}

body > div {
  margin: 150px auto 0;
  width: 1000px;
  display: flex;
  justify-content: space-between;
}
article {
  width:300px;
  background:#fff;
  box-sizing:border-box;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
  transition:.3s all ease-in-out;
}
.category {
  background:#eee;
  color:#686868;
  text-transform: uppercase;
  font-size: 13px;
  display:inline-block;
  padding:5px;
  margin-top: 10px;
}
h2 {
  font-size: 18px;
  line-height: 20px;
  color:#051f3a;
  transition:.3s all ease-in-out;
}
a:hover h2 {
  color:#e1001a;
}
a:hover img {
  transform:scale(1.05);
  filter:grayscale(1);
}

@media screen and (max-width:1000px)  {
  a {
    width: 300px;
  }
  body > div {
    width:auto;
    flex-direction:column;
    align-items:center;
  }
  h2 {
    font-size: 16px;
  }
}