@import url('https://fonts.googleapis.com/css?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css?family=Anton&display=swap');
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #b42e1ab7 0%, #7cb428ba 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
  }
  
  h1 {
    font-size: 3em;
    text-align: center;
    margin: 20px 0;
    font-family: Anton;
    color: #333;
  }
  
  h2 {
    font-size: 2.2em;
    margin: 10px 0;
    font-family: Anton;
    text-align: right;
    color: #333;
  }
  
  p {
    line-height: 1.1;
    margin: 20px 0;
    text-align: center;
    font-size: 2.5em;
    font-family: Bebas+Neue;
    font-weight: bold;
    color: #333;
  }
  .book-image {
    display: block;
    margin:  auto;
    width: 150px;
    height: auto;
    border-radius: 4px;
    margin: 1%;
    align-items: center;
  }
  #book-container {
    display: flex;
    align-items: center;
  }
  
  #book-info {
    margin: 0 20px;
  }

  #go-back {
    position: fixed;
    bottom: 20px;
    left: 20px;
  }
  
  #go-back a {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(7, 7, 7, 0.604);
    border-radius: 4px;
    text-decoration: none;
    color: rgba(51, 51, 51, 0.162);
    font-size: 0.9em;
    color: whitesmoke;
  }
  
  #go-back a:hover {
    background-color: #999;
  }

  /* Disable Scroll*/
::-webkit-scrollbar {
  display: none;  
}
@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}
.clasified {
  position: absolute;
  top: 0;
  left: 0; 
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  width: auto;
  height: auto;
}
#book-info h3 {
  margin-top: 20px;
}

#book-info ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#book-info li {
  margin-top: 10px;
}
#charsts{
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 0.8em;
  font-family: Bebas+Neue;
}