body {
    background:#e3cfd4;
    overflow-x:hidden;
    display: flex;
    min-height: 100vh;
    flex-direction: row;
    margin: 0;
    font-family:'Zen Antique', serif;
  }
  .col-1 {
    background: #dfe6e4;
    width="900px"
  }
  .col-2 {
    display: flex;
    flex-direction: column;
    flex: _%;
    background:powderblue;
  }
  
.head {
  text-align:center;
  letter-spacing:1px;
  font-family:'lato';
  font-size:35px;
  font-weight:bold;
  margin-bottom:15px;
  color:#8A6360;
  display:block;
}
  
/* main content container */
#container {
  height:auto;
  width:1100px;
  background-color:#f1f1f1;
  margin-left: auto;
  margin-right: auto;
  margin-top:40px;
  border: 1px solid #ccc;
  padding:13px;
}

#rows {
  width:1080px;
  margin-left:100px;
  height:auto;
  justify-content:center;
}

.row {
  height:auto;
  width:1080px;
  display:block;
  margin-bottom:20px;
}

.box {
  overflow:hidden;
  display:inline-block;
  margin-left:32px;
  margin-right:32px;
  width:240px;
  height:auto;
  font-size:15px;
}
 .box img {
  width:240px;
  position:relative;
  height:100%;
}
 
.name {
  color:#8A6360; 
  padding:-5px 5px 2px 5px;
  text-align:left;
  font-size:18px;
  font-weight:700;
    margin-bottom:5px;
  letter-spacing:1px;
}

.desc {
  margin-top:-5px;
    padding:5px;padding-bottom:0px;
  line-height:20px;
}

.blur {
  overflow:hidden;
  transform: translate3d(0, 0, 0);
  filter:blur(7px) grayscale(50%);
  -webkit-filter:blur(7px) grayscale(70%);
  -moz-filter:blur(7px) grayscale(70%);
  -o-filter:blur(7px) grayscale(70%);
  transition:all 1s ease;
  -webkit-transition:all 0.6s ease;
  -moz-transition:all 0.6s ease;
  -o-transition:all 0.6s ease;
}

.blur:hover {
  width:240px;
  filter:none;
}

/* navie thing */
#navi {
  text-align:center;
  width:230px;
  background-color:#f1f1f1;
  margin-left: 15px;
  margin-right:15px;
  margin-top:10px;
  border: 1px solid #ccc;
  padding-bottom:10px;
}

#navi .head {margin-bottom:15px;}

#navi a, #navi a:visited {
  color:#96453f;
  font-size:18px;
  line-height:35px;
}

#navi a:hover {text-decoration:none;}