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 h3{
    text-transform: capitalize;
    margin-bottom: .5rem;
}

.page img{
    max-width: 75%;
    max-height: 60%;
    height: auto;
    mix-blend-mode: hard-light;
    transition: .5s ease;
    cursor: pointer;
}

.page img:hover{
    mix-blend-mode: normal;
    transform: scale(1.1);
}

a{
    text-decoration: none;
    font-weight: 600;
    transition: .5s ease;
}

.page a:hover{
    text-decoration: underline;
}

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

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

.spread:not(.active) {
    display: none;
}

.table li{
    cursor: pointer;
    transition: .3s ease;
}

.table li:hover{
    transform: scale(1.05);
}

.los-btn {
    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: .5s ease;
}

.los-btn:hover{
    transform: scale(1.1);
    box-shadow: 0 0 10px #f8ea24;
}

footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
}