body{
    background-image: url(book-images/pink-paper-texture-background-design-vector\ \(1\).jpg);
}

.top{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
}

.top img{
    width:100%;
    max-width:800px;
    height:auto;
}

.bookshelf{
    display:flex;
    flex-direction:column;
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 30px;
    background-color:burlywood;
    border: 8px solid #b5651d;
    border-radius: 0px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    box-sizing: border-box;
    outline: 3px solid #b5651d;
    outline-offset: -14px;
    
    background-image:
        linear-gradient(white, white),
        repeating-linear-gradient(
            90deg,
            rgba(0,0,0,0.03),
            rgba(0,0,0,0.03) 2px,
            transparent 2px
            transparent 40px
        );
    background-blend-mode: overlay;
}

.shelf{
    display: flex;
    flex-direction:row;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
    background-color: burlywood;
    border-radius: 8px;
    margin-top: 20px;

    background: linear-gradient(to bottom, #f5ddea, #eec3d9);
    border-radius: 12px;
    box-shadow: inset 0 -4px 0 rgba(0,0,0,0.1);
}

.book{
    border-radius: 10px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.book img{
    width:100px;
    height:auto;
    border-radius: 8px;
}

.book:hover {
    transform: scale(2.3);
    box-shadow: 0 8px 15px rgba (0,0,0,0.3);
}