.body{
    height:100%;
    margin:0;
    padding:0;
    color:#000;
    overflow-y:scroll;
    position:relative;
    min-height:100%;
}
.container{
    margin: 20px auto;
}
.items{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}
.item{
    display:flex;
    flex-flow:column;
    padding:10px 5px;

    width:190px;
}
.image{
    width:100%;
    cursor:pointer;
}
.id{
    text-align:center;
}
.content{
    margin-top:10px;
}
.pagination{
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    text-align:right;
    border-radius: 4px;
}
.page-item{
    display: inline;
}
.pagination > .active > a{
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}
.pagination > li > * {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}
.image-wrapper{
    display:flex;
    flex-flow:column;
    justify-content: center;
}

/* Modal Content/Box */
.modal-content {
    display: flex;
    justify-content: center;
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-left:auto;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (min-width: 1200px){
    .container{
        width: 1000px;
        
    }
 
}
@media only screen and (max-width: 1200px){
    .container{
       padding:0 15px;
    }

}
    
@media only screen and (max-width: 768px){
    .close{
      font-size:58px;
      margin-right:10px;
    }

}
    
