* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-size: 1rem; 
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 44px;   
}

#link {
    color: rgb(65, 11, 11);
    font-family:'Courier New', Courier, monospace;
    display: inline-block;
}

#link:hover {
    color: hwb(313 0% 57%);

}
a:link {
    transition: color 1s;
}


#books{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
   justify-content: center;
   text-align: center;
    height: 100vh;
}

/* books sections */
#books article{
    padding-top: 33vh;
    font-size: 1rem;
}



    #book-1 {
        background-color: rgb(255, 238, 208);
        color: black;

    }
    #book-1 h2{
        color: aqua;
    }

    #book-2 {
        background-color: rgb(255, 65, 106);
        color: rgb(255, 255, 255);
        
    }
    #book-2 h2{
        color: bisque;
    }
