@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;

}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #333333a4; 
  color: #fff; 
  padding: 15px;
  text-align: center;
  z-index: 1000; 
}

body {
    background: url('Pictures/BgBoy.jpg');
    display: grid;
    place-content: center;
    height: 100vh;
    width: 100vw;
	overflow: hidden;
}
/*Images*/
img {
    height: 50%;
    width: 50%;
    position: absolute;
    bottom: 40%;
    border: 9px solid #ff89a1;
    border-radius: 10%;
}
p {
    position: absolute;
    top: 65%;
    font-size: 25px;
    text-align: justify;
    padding: 35px;
}
h1 {
    text-align: center;
    font-weight: normal
}
.HAILEY {
    font-weight: normal;
    padding: 110px;
    font-size: 30px;
}
h2 {
    text-align: center;
    font-weight: normal;
    text-align: justify;
    padding: 110px;
    font-size: 30px;
}

.flipbook {
    width: 1500px;
    height: 1000px;
}


.flipbook .hard {
    background: #804d00 !important;
    color: #fff;
    font-weight: bold;
    border: none; 
}

.flipbook .hard small{
	font-style: italic;
	font-weight: lighter;
	opacity: 0.7;
	font-size: 14px; 
}

.flipbook .page {
    background: url('Pictures/Paper.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.11);
}

.flipbook .collage-page {
    background-image: url('Pictures/CollBg.png');
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center; 
}

.page img{
	width: 70%;
	object-fit: cover;
	margin: auto;
}

.flipbook .page small{
	font-size: 14px;
    margin-bottom: 10px;
}
#prev-btn {
    left: 18.5%;
}

#next-btn {
    right: 20%; 
}
#prev-btn, #next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 40px 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: #ff89a1;
    color: #fff;
    border: none;
    border-radius: 5px;
    z-index: 500;
}