body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  position: relative;
}

.embla {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #ddd;
  position: relative;
}

.embla__container {
  display: flex;
}

.embla__slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.embla__slide img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  object-position: center;
}

.embla__button {
  position: absolute;
  top: 50%;
  z-index: 10;
  background: none;
  padding: 5px;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
}

.embla__button--prev {
  left: 50px;
  font-size: 40px;
}

.embla__button--next {
  right: 50px;
  font-size: 40px;
}

.back-link {
  position: absolute;
  top: 10px;
  left: 25px;
  z-index: 100;
}

.back-link img {
  width: 36px;
  height: 36px;
}

.book-gallery {
  display: flex;
}

.book-preview {
  width: 600px;
  text-align: center;
  color: #333;
  transition: transform 0.2s;
  text-decoration: none;
}

.book-preview:hover {
  transform: scale(1.05);
}

.book-preview img {
  width: 100%;
  height: auto;
}

.book-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

.book1-wrapper {
  position: relative;
  width: 100%;
}

.books-mainpage {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.book1-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.book1-text {
  margin-top: 100px;
  margin-bottom: -130px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
