#wrapper {

    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0px auto 100px;
}

.section {
    width: 100%;
    height: auto;
    margin-top: 50px;
    background-color: #E6E6E6;
    padding-bottom: 20px;
}
.section-text {
    width: 80%;
    margin: 0 auto;
}
.section ul li {
    float: left;
}
.section-box {
    width: 80%;
    height: auto;

   margin: 60px auto;
    display: -webkit-flex;
   display: -ms-flex;
   display: flex;
   -webkit-flex-wrap: wrap;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
    box-shadow: 5px 5px 10px grey, -5px -5px 10px grey;

}

.article {

     display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
     width: 42%;
  min-width: 280px;
  background-color: #E6E6E6;
  padding: 10px 2px 10px 10px;
  float: left;
  margin: 2%;
}
.article img {
    width: 100%;
    height: auto;
}
.article h2, .article p {
    clear: both;
    float: none;
    display: inline;
}
.article-button {
width: 150px;
height: 30px;
margin-left: 50%;
margin-top: 10px;
background-color: #fff;
    border: 1px solid rgb(55,2,59);
    border-radius: 3px;
    box-shadow: 5px -5px 10px grey;
    font-family: 'Roboto', sans-serif;
    font-family: 'Overlock', cursive;
    font-size: 18px;
    font-weight: bold;
   color: #37023B;
   text-align: center;
}


 @media only screen and (max-width: 960px) {

.article {
    width: 100%;
}
.article img {
    width: 100%;
    height: auto;
}
}
 @media only screen and (max-width: 600px)  {

.article {
    min-width: 200px;
}
.article img {
    width: 100%;
    height: auto;
}


