html{
  background-color: aliceblue;
}

body{
  width: 900px;
  margin: 0 auto;
}

.fuchi h1{
  color: aliceblue;
  text-stroke: 1.2px #333;
  -webkit-text-stroke: 1.2px #333;
  margin: 20px 0;
  font-size: 40px;
  text-align: center;
}

.search{
  margin-bottom: 35px;
  text-align: center;
}

#gBookKeyWords{
  padding: 10px;
  padding-right: 30px;
}

#gBookSearchBtn{
  padding: 8px 15px;
  height: auto;
  position: relative;
  top: 1px;
  font-weight: bold;
}

#googleBooks{
  display: flex; 
  flex-wrap: wrap;
  justify-content:space-around;
}

#googleBooks div{
  display: inline-block;
  background-color: #fff7f0;
  border: solid 1px gray; 
  width: 220px;
  height: 300px;
  padding: 0.5em;
  margin: 20px;
}

#googleBooks div:hover{
  box-shadow: 0 0 15px darkgray;
  opacity: 0.7;
}

p.title{
  font-weight: bold;
  font-size: 15px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  margin: 0;
}

p.authors{
  display: block;
  font-size: 12px;
  white-space: normal;
}

p.isbn{
  font-size: 12px;
  white-space: normal;
}

#googleBooks img{
  height: 160px;
  max-width: 120px;
  display: block;
  margin: 20px auto;
}

footer{
  text-align: center;
  margin-top: 40px;
}

footer img{
  width: 900px;
}

footer hr{
  margin-top: 0;
}