﻿/* style.css */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../images/background.jpg') no-repeat center center fixed;
  background-size: cover;
}
#flipbook {
  width: 800px;
  height: 600px;
  position: relative;
  z-index: 1;
}

.page {
  width: 100%;
  height: 100%;
  background: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

#prev {
  left: 20px;
}

#next {
  right: 20px;
}
