@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: grid;
    place-content: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: #d4af37;
}


@media only screen and (max-width: 600px) {.flipbook {
    width: 300px;
    height: 197px;
}
}

@media only screen and (max-height: 500px) {.flipbook {
    width: 300px;
    height:197px;
}
}

@media only screen and (min-width: 600px) and (min-height: 600px){.flipbook {
    width: 440px;
    height: 750px;
}
}

@media only screen and (min-width: 768px) and (min-height: 600px) {.flipbook {
    width: 562px;
    height: 337px;
}
}

@media only screen and (min-width: 992px) and (min-height: 600px) {.flipbook {
    width: 726px;
    height: 320px;
}
}

@media only screen and (min-width: 1200px) {.flipbook {
    width: 1000px;
    height: 600px;
}
}

.flipbook .hard {
    background: #f0f6fa !important;
    color: #fff;
    font-weight: bold;
    border: none; 
}



.flipbook .page {
    background: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    gap: 5px;
    border: 1px solid rgba(0, 0, 0, 0.11);
}

 /* Floating Link button */
  #floating-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0077cc;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 300;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: background 0.3s ease, transform 0.2s ease;
    font-family: sans-serif;
  }
  #floating-link:hover {
    background: #005fa3;
    transform: scale(1.05);
  }

.page img{
	width: 93%;
	object-fit: cover;
	margin: auto;
}
