body, html{
    overflow: hidden;
    height: 100%;
}

body{
    background-image: url(/images/backgroundbook.png);
    background-position: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
}

.book {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.spread {
    display: flex;
    width: 100%;
    height: 100%;
}

.page {
    flex: 1;
    padding: 2rem;
    padding-bottom: 7rem;
    width: 50vw;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
}

.page img{
    max-width: 100%;
    height: auto;
    mix-blend-mode: hard-light;
}

.left{
    padding-right: clamp(2rem, 5vw, 5rem);
    line-height: 1.6;
}

.left p{
    margin-bottom: 5rem;
}

.right{
    padding-left: clamp(2rem, 5vw, 5rem);
    text-align: center;
    font-weight: 900;
}

a{
    text-decoration: none;
    color: black;
}

.home-btn{
    position: absolute;
    bottom: 0;
    border-radius: .625rem;
    text-transform: capitalize;
    margin: 2.5rem;
    width: 8rem;
    height: 3.5rem;
    background-color: #87A8E0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.25rem;
    color: black;
    font-weight: 900;
    transition: .3s ease;
}

.home-btn:hover{
    border: 3px solid #87A8E0;
    background-color: #E0BF87;
    transform: scale(1.1);
}

