body {
  background-image: url("fabric-bunny-pink.png");
  font-family: "Delius";
}

 #cover {
        width: 820px;
        height: 580px;
        border-radius: 15px;
        background-color: #74c69d;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background-image: url('https://i.imgur.com/BspyVOP.png');
        box-shadow: 2px 2px 2px #57443E;
        padding: 10px;
    }

    #page1 {
        background-color: #ede9df;
        border-radius: 15px;
        width: 818px;
        height: 578px;
        padding: 2px;
        box-shadow: 0px 0px 2px #57443E;
    }

    #page2 {
        background-color: #ede9df;
        border-radius: 15px;
        width: 814px;
        height: 574px;
        box-shadow: 0px 0px 2px #574539;
        padding: 2px;
    }

    #page3 {
        background-color: #fcf9f0;
        border-radius: 15px;
        width: 814px;
        height: 574px;
        box-shadow: 0px 0px 2px #574539;
        background-image: url('https://i.imgur.com/BspyVOP.png');
    }

   #line{
       width: 1px;
       height: 574px;
       margin: 0 auto;
       background-color: #A19386;
       box-shadow: 0px 0px 10px #2e2a27;
    }

    #leftpage{
        float: left;
        width: 363px;
        height: 538px;
        padding: 20px;
        overflow: auto;
        scrollbar-width: none;
    }

    #rightpage{
        float: right;
        width: 361px;
        height: 538px;
        padding: 20px;
        overflow: auto;
        scrollbar-width: none;
    }

/* OTHER STUFFIES */

    a {
    color: #6c4b52;
    text-decoration: none;
    }

    a:hover {
    color: #40232a;
    text-decoration: underline;
    font-style: italic;
    }

    h1, h2, h3, h4 {
    color: #6c4b52;
    font-family: 'Lobster';
    }

    .img {
    height: 150px;
    width: 100px;
    border: 2px solid #9a767e;
    border-radius: 5px;
    }

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background-image: linear-gradient(to bottom, #ffd2e3, #ffe9d2, #feffd2, #d2ffd6, #d2ecff, #f5d2ff);
    border-radius: 5px;
    border: 1px #ffafc5 solid;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(#ffdede, #fff);
    background-size: 100% 100%;
    background-repeat: repeat;
    border-radius: 5px;
    border: 1px #ffafc5 solid;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#ffdede, #fff);
    background-size: 100% 100%;
    background-repeat: repeat;
    border-radius: 5px;
    border: 1px #ffafc5 solid;
}

 
