@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&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: #ADD8E6;
}

.flipbook {
    width: 1000px;
    height: 600px;
}

.flipbook .hard {
    background: #FFB6C1 !important;
    color: #fff;
    font-weight: bold;
    border: none;
    font-size: 100px;
}

.flipbook .hard small {
    font-style: italic;
    font-weight: lighter;
    opacity: 0.7;
    font-size: 20px;
}

.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);
    position: relative;
    overflow: hidden;
}

.page-background {
    position: absolute;
    top: 0;
    left: 50%; /* Position at the horizontal center */
    transform: translateX(-50%); /* Adjust to perfectly center */
        width: 190px; /* Example width */
        height: 190px;
    margin-top: 10px;
}

.page-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.large-heading {
    font-size: 200px;
    margin: 0;
    margin-bottom: 10px;
    z-index: 2;
    line-height: 1;
}

.flipbook .page small {
    font-size: 20px;
    margin-top: 10px;
    margin-left: 30px;
    margin-right: 30px;
    z-index: 2;
    line-height: 0.9;
}