*{
    background-color: paleturquoise;
}
html{

}
header *, header{

}
p{

}

h1{
    color:palevioletred;
    text-align: center;
}

.navBar ul{
    background-color: pink;
    max-width: 960px;
    margin: auto;
    line-height: 3rem;
/* this stuff makes it wrap around on mobile */
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
/* this line takes away the dot in front of the list items */
    list-style-type: none;
/* list items have default padding but we don't need it for these */
    padding: 0;
/* and this spaces out the buttons so they're not touching */
    justify-content: space-evenly;
}
body{
    padding-left: 0px;
}
.navBar a{
    background-color: pink;
    color:#FF3183;
    text-decoration: none;
    padding: 15px;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 20%;
    font-size: large;
    display: block;
    text-align: center;
    line-height: normal;
}

.navBar a:hover{
    background-color: violet;
}

.bookBlock{
    display: flex;
    max-width: 66%;
    text-align: left;
    margin: auto;
    padding: 0.4em 0.6em;
    border: 5px solid pink;
    border-radius: 5px;
    overflow: auto;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 20px;
    background-color: rgb(245, 239, 174);
}
.bookBlock *{
    background-color: rgb(245, 239, 174);
}
.inblock{
    display: flex;
    max-width: 100%;
    text-align: left;
    margin: auto;
}
.coverBlock{

}
.titleBlock{
    min-width: 47%;
}
.reviewBlock{
    min-width: 97%;
}


h2{
    text-align: center;
}
img{
    align-self: center;
    border: pink;
    border-style: solid;
    border-radius: 2px;
    height: auto;
    max-width: 97%;
}
.date{
    font-size: 100%;
    text-align: left;
}
.info{
    text-align: left;
    display: inline-block;
}
.desc{
    line-height: 300%;
}
.center{
    text-align: center;
}