body {
  background-color: #F5F5F5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  color: black;
}

.container {
  text-align: center;
}

.book {
  width: 400px; /* Adjust for 5x8 aspect ratio */
  height: 640px;
  object-fit: cover; /* Ensures image scales properly */
  border: 2px solid #000;
}

.buttons {
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 0 10px;
  cursor: pointer;
  border: none;
  background-color: #000000;
  color: white;
  border-radius: 10px;

}

button:hover {
  background-color: #0056b3;
}

