body {
  background-image: url("/images/bookshelf.jpg");
  background-attachment: fixed;
  background-repeat: repeat;
  overflow: hidden;
  overflow-y: auto;
  overflow-x: hidden;
}


.info {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.info-text {
  visibility: hidden;
  width: 500px;
  height: 600px;
  background-color: white;
  color: black;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 99;
  top: 8em;
  left: 40em;
  border: 20px solid transparent;
  border-image: url("https://64.media.tumblr.com/69f4b0edf0c3d6e602e15282ba3e083c/tumblr_inline_n37sp5KXN81qhwjx8.jpg") 30 round;
}

.info:hover .info-text {
  visibility: visible;
}

.info-text p {
  padding: 15px 20px;
  font-size: 20px;
}

.info-text q {
  display: block;
  font-weight: bold;
  font-size: 25px;
  padding: 15px;
}