@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');


header{
    display: grid;
    grid-template-columns: 140px 1fr calc(var(--w-image) * var(--calculate));
    grid-template-rows: 80px;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
}
header .logo img{
    width: 120%;
    margin-left: 1px;
}
header .logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
header nav a{
    color: #000;
    font-weight: 400;
}
header nav ul{
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
}
header nav{
    border-left: 1px solid var(--border-color);
}
*{
    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: linear-gradient(135deg, #1F4529, #47663B);
    background-size: 400% 400%;
    /* animation: gradientBackground(6s ease infinite; 627d 46%, #b8235a 59%, #801357 71%, #3d1635 84%, #1c1a27 100%); */
  
}

.flipbook {
    width: 1000px;
    height: 600px;
    margin-top: 80px;
}

.flipbook .hard {
    background: #E8ECD7!important;
    color: #47663B;
    font-weight: bold;
    border: none;
    font-size: 25px;
    
}

.flipbook .hard small{
	font-style: italic;
	font-weight: lighter;
	opacity: 0.7;
	font-size: 10px;
    
}

.flipbook .page {
    background: #D8DBBD;
	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: 40%;
	object-fit: cover;
    margin: 20px;
    margin-left: 130px;
    transition: transform 0.3s ease;
    padding-left: 30px;

}
.flipbook .page img:hover {
    transform: scale(1.2);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.flipbook .page small{
	font-size: 14px;
    margin-bottom: 10px;
}

.description {
    text-align: center;
    margin: 20px;
    font-style: italic;
    color: #2c3e50;
    font-size: 16px;
    display: block;
}
header.dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #E8ECD7;
    padding: 10px 20px;
    border-bottom: 2px solid #47663B;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header.dashboard .logo img {
        height: 100px; 
        width: auto;  
    }
header.dashboard nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header.dashboard nav ul li {
    font-size: 16px;
}

header.dashboard nav ul li a {
    text-decoration: none;
    color: #47663B;
    font-weight: 500;
    transition: color 0.3s ease;
}

header.dashboard nav ul li a:hover {
    color: #1F4529;
}



