@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; */
    overflow: auto;
	/* background: #935d8c; */
    background-color: #935d8c;
	background-image: url("images/overlay.png"), -moz-linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
	background-image: url("images/overlay.png"), -webkit-linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
	background-image: url("images/overlay.png"), -ms-linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
	background-image: url("images/overlay.png"), linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
}

.flipbook {
    max-width: 100%;
    height: auto;
    /* width: 1000px;
    height: 600px; */
    /* width: 70%;
    height: 70%; */
}

.flipbook .hard {
    background: #a6cfdc !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: 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;
}

.flipbook-container {
    display: flex;
    width: 100vw;
    transition: all 0.6s ease;
    padding-top: 20px;
    padding-bottom: 20px;
    /* This keeps the height from being cut off */
    overflow: hidden;
}

.flipbook-container.centered {
    justify-content: center;
}

.flipbook-container.shift-left {
    justify-content: flex-start;
    padding-left: calc(50vw - 500px); /* 500px = half of .flipbook width */
}

.topleft {
    position: absolute;
	top: 0;
	left: 16px;
    /* position: fixed;
    top: 20px;
    left: 30px; */
    /* z-index: 1000; */
    /* font-size: 20px;
    font-weight: 300;  */
    color: white;
}

.topleft a {
    color: white;
    text-decoration: none;
    border-bottom: 1px dotted white;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
    /* font-weight: 300; */
}

.topleft a:hover {
    border-bottom-color: transparent;
    color: white;
}

