body{
    height:100vh;
    margin:0;
    color: rgb(0, 0, 0);
    /* background-image: url('../../Assets/Images/Backgrounds/Lake.JPG'); */
    background: beige;
    background-size:cover;
    background-attachment: fixed;
}

#background{
    display: flex;
    position: absolute;
    width:100vw;
    height:100vh;

}

#sidebar{
    display: flex;
    flex-direction: column;
    min-width: 20%;
    padding:0.5em;
    border-top:0;
    border-left:0;
    border-bottom:0;
    overflow: scroll;
    align-items: center;
    scrollbar-width: none;
}

.book{
    display: flex;
    width:90%;
    margin:0.5em 0 0 0;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.486);
    
}

.favourite{
    text-align: right;
    margin:0 0.5em 0 0;
}

.vines2 {
    border: 16px solid transparent;
    padding: 10px;
    border-image: url(../../Assets/Images/borders/vines2.png) 16 round;
    overflow: auto;
    margin: 5px;
    }

.content{
    box-sizing: border-box;
    height:100vh;
    padding:1em;
    font-size:large;
    overflow: scroll;
    scrollbar-width: none;
}

#mainArea{
    background-color: rgba(0, 0, 0, 0.192);
    scrollbar-width: none;
}

#back_button{
    width:30%;
    color:white;
    font-weight: bold;
    text-align: center;
    margin:1em;
    background-color: rgba(22, 77, 22, 0.719);
    border-radius: 0.2em;
}

.bookDesc{
    display: grid;
    margin:0;
    width:100%;
    box-sizing: border-box;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
    "title title blank blank blank"
    "cover cover desc desc desc"
    "cover cover desc desc desc";
    scrollbar-width: none;
}

.bookDesc .title{
    grid-area: title;
    text-align: center;
    

}
.bookDesc .description{
    scrollbar-width: none;
    grid-area: desc;
}
.bookDesc .cover{
    grid-area: cover;
    width: 50%;
    
    margin:auto;
    display:block;
    scrollbar-width: none;

}
/* 
.bookNotes{
    height: 50%;
    overflow: scroll;
} */