/* jezeli to czytasz, ten kod zajebałem od HankTheTank, na YT, flipbook in 5 minutes*/

{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body  {  
  display: grid;
  place-content: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-image: url("https://siedemnastek.neocities.org/magazynbg.png");
}

.flipbook {
 width: 1080px;
 height: 900px;
}

.flipbook .hard {
 background: white;
 color: red;
 font-weight: bold;
 border: none;
}

.flipbook .page {
 background: white;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 10px;
 border: 1px solid rgba(0, 0, 0, 0.11);
}

.page img {
 width: 70%;
 object-fit: cover;
 margin: auto;
}

.flipbook .page small {
  font-size: 14px;
  margin-bottom: 10px;
}