body {
	background: url("../layout/background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	color: black;
	font-family: 'Roboto', sans-serif;
    font-weight: 700;
	overflow-x: hidden;
	margin: auto;
}

.logo {
	position: absolute;
	width: 65px;
	height: 65px;
	background: urL("../layout/header/logo.png");
	background-repeat: no-repeat;
	background-size: cover;
	top: 1%;
	left: 1%;
}

.bookContainer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
	width: 105%;
	height: 50px;
	cursor: pointer;
	bottom: 55%;
}

.bookContainer .book {
    position: relative;
    width: 526px;
	height: 526px;
	top: 25%;
	left: -2%;
	animation: 2s book infinite;
}

.bookContainer .book img {
	width: 526px;
	height: 526px;
}

.bookContainer .book .text {
	position: relative;
	font-weight: 500;
	font-size: 15px;
	/* background-color: red; */
	width: 292px;
	height: 359px;
	color: black;
	top: -90%;
	left: 25%;
	line-break: anywhere;
	visibility: hidden;
}

@keyframes book {
	50% {
	    position: relative;
		margin-top: 2%;
	}
}

/* Mobile Responsivity */
@media only screen and (max-width: 1268px) {
    body {
    	background: url("../layout/background.jpg");
    	background-repeat: no-repeat;
    	color: black;
    	font-family: 'Roboto', sans-serif;
        font-weight: 700;
    	overflow-x: hidden;
    	margin: auto;
    }
    
    .bookContainer {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
    	width: 105%;
    	height: 50px;
    	cursor: pointer;
    	bottom: 55%;
    }
    
    .bookContainer .book {
        position: relative;
        width: 526px;
    	height: 526px;
    	top: 25%;
    	left: -2%;
    	animation: 2s book infinite;
    }
    
    .bookContainer .book img {
    	width: 526px;
    	height: 526px;
    }
    
    .bookContainer .book .text {
    	position: relative;
    	font-weight: 500;
    	font-size: 15px;
    	/* background-color: red; */
    	width: 292px;
    	height: 359px;
    	color: black;
    	top: -90%;
    	left: 25%;
    	line-break: anywhere;
    	visibility: hidden;
    }
}