/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

body{
  text-align: center;
  word-wrap: break-word;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start; 
  }

#library{
    background-color: lightslategrey;
	display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
	flex-direction: column;
    align-content: stretch;
}

.book{
    max-width:320px;
	min-width: 200px;
    height:auto;
    background-color: lightsteelblue;
    padding: 10px;
    margin: 10px auto;
    color: white;
    flex-basis: auto; 
}

.book img{
    max-width:300px;
	float: center;
}

.book span{
    display: block;
	width 320px;
}

.book a:link{
  color: white;
}

.book a:visited{
 color: antiquewhite; 
}

.book a:hover{
  color:silver;
}

.book a:active{
  color: gray;
}

.book img{
    max-height: 200px	
}